* Targets a room when emitting. * * @param room * @return BroadcastOperator * @public
(
room: string | string[],
)
| 60 | * @public |
| 61 | */ |
| 62 | public in( |
| 63 | room: string | string[], |
| 64 | ): BroadcastOperator<EmitEvents, ServerSideEvents> { |
| 65 | return this.newBroadcastOperator().in(room); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Excludes a room when emitting. |
nothing calls this directly
no test coverage detected