(socket: WebSocket)
| 43 | this._sockets.add(socket); |
| 44 | } |
| 45 | removeSocket(socket: WebSocket) { |
| 46 | this._sockets.delete(socket); |
| 47 | |
| 48 | if (this._sockets.size === 0) { |
| 49 | this.destroy(); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | broadcast(message: Uint8Array) { |
| 54 | for (const socket of this._sockets) { |
no test coverage detected