Disconnect the socket (and do not reconnect to it).
()
| 93 | |
| 94 | /** Disconnect the socket (and do not reconnect to it). */ |
| 95 | disconnect() { |
| 96 | this.keepOpen = false; |
| 97 | if (this.client.socket) { |
| 98 | this.client.socket.close(); |
| 99 | this.client.socket = undefined; |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Open a new socket and try to connect again. |