* Makes the matching socket instances disconnect. * * Note: this method also works within a cluster of multiple Socket.IO servers, with a compatible {@link Adapter}. * * @example * // make all socket instances disconnect (the connections might be kept alive for other namespaces) *
(close: boolean = false)
| 1166 | * @param close - whether to close the underlying connection |
| 1167 | */ |
| 1168 | public disconnectSockets(close: boolean = false) { |
| 1169 | return this.sockets.disconnectSockets(close); |
| 1170 | } |
| 1171 | } |
| 1172 | |
| 1173 | /** |
no outgoing calls
no test coverage detected