(subscriptionId: string, filters: SubscriptionFilter[])
| 103 | } |
| 104 | |
| 105 | public onSubscribed(subscriptionId: string, filters: SubscriptionFilter[]): void { |
| 106 | logger('client %s subscribed %s to %o', this.clientId, subscriptionId, filters) |
| 107 | this.subscriptions.set(subscriptionId, filters) |
| 108 | } |
| 109 | |
| 110 | public onBroadcast(event: Event): void { |
| 111 | this.webSocketServer.emit(WebSocketServerAdapterEvent.Broadcast, event) |
no outgoing calls
no test coverage detected