(requestId: number, subscriptionInfo: any)
| 72 | } |
| 73 | |
| 74 | addSubscriptionInfo(requestId: number, subscriptionInfo: any): void { |
| 75 | this.subscriptionInfos.set(requestId, subscriptionInfo); |
| 76 | } |
| 77 | |
| 78 | getSubscriptionInfo(requestId: number): any { |
| 79 | return this.subscriptionInfos.get(requestId); |
no outgoing calls
no test coverage detected