(message: Uint8Array)
| 51 | } |
| 52 | |
| 53 | broadcast(message: Uint8Array) { |
| 54 | for (const socket of this._sockets) { |
| 55 | socket.send(message); |
| 56 | } |
| 57 | } |
| 58 | broadcastExcept(message: Uint8Array, exception: WebSocket) { |
| 59 | for (const socket of this._sockets) { |
| 60 | if (socket !== exception) { |