(clientExpression: string, subscriptionName: string)
| 34 | }, |
| 35 | |
| 36 | unsubscribes (clientExpression: string, subscriptionName: string) { |
| 37 | clientHandler.getClients(clientExpression).forEach((client) => { |
| 38 | client.client.event.unsubscribe(subscriptionName, client.event.callbacks[subscriptionName]) |
| 39 | client.event.callbacks[subscriptionName].isSubscribed = false |
| 40 | }) |
| 41 | } |
| 42 | } |
nothing calls this directly
no test coverage detected