* Excludes a room when emitting. * * @param room * @return BroadcastOperator * @public
(
room: string | string[],
)
| 73 | * @public |
| 74 | */ |
| 75 | public except( |
| 76 | room: string | string[], |
| 77 | ): BroadcastOperator<EmitEvents, ServerSideEvents> { |
| 78 | return this.newBroadcastOperator().except(room); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Sets a modifier for a subsequent event emission that the event data may be lost if the client is not ready to |
nothing calls this directly
no test coverage detected