* Sets a modifier for a subsequent event emission that the event data will only be broadcast to every sockets but the * sender. * * @example * io.on("connection", (socket) => { * // the “foo” event will be broadcast to all connected clients, except this socket * socket.broadcas
()
| 766 | * @return a new {@link BroadcastOperator} instance for chaining |
| 767 | */ |
| 768 | public get broadcast() { |
| 769 | return this.newBroadcastOperator(); |
| 770 | } |
| 771 | |
| 772 | /** |
| 773 | * Sets a modifier for a subsequent event emission that the event data will only be broadcast to the current node. |
no test coverage detected