(c: WsConnection, sid: string)
| 44 | set.add(c); |
| 45 | } |
| 46 | unsubscribe(c: WsConnection, sid: string): void { |
| 47 | this._bySession.get(sid)?.delete(c); |
| 48 | } |
| 49 | getConnections(sid: string): Iterable<WsConnection> { |
| 50 | return this._bySession.get(sid)?.values() ?? []; |
| 51 | } |