(sid: string)
| 641 | } |
| 642 | |
| 643 | private unsubscribe(sid: string): void { |
| 644 | if (!this.subscriptions.has(sid)) return; |
| 645 | this.subscriptions.delete(sid); |
| 646 | this.sessionClients.unsubscribe(this, sid); |
| 647 | } |
| 648 | |
| 649 | private startPingTimer(): void { |
| 650 | this.pingTimer = setInterval(() => { |
no test coverage detected