* Sets the compress flag. * * @param compress - if `true`, compresses the sending data * @return BroadcastOperator * @public
(
compress: boolean,
)
| 98 | * @public |
| 99 | */ |
| 100 | public compress( |
| 101 | compress: boolean, |
| 102 | ): BroadcastOperator<EmitEvents, ServerSideEvents> { |
| 103 | return this.newBroadcastOperator().compress(compress); |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Makes the matching socket instances join the specified rooms |
nothing calls this directly
no test coverage detected