(port: number, options?: any)
| 30 | } |
| 31 | |
| 32 | public createIOServer(port: number, options?: any): any { |
| 33 | if (this.httpServer && port === 0) { |
| 34 | return new Server(this.httpServer, options); |
| 35 | } |
| 36 | return new Server(port, options); |
| 37 | } |
| 38 | |
| 39 | public bindMessageHandlers( |
| 40 | socket: Socket, |