Paul il y a 5 ans
Parent
révision
062239b518
1 fichiers modifiés avec 7 ajouts et 0 suppressions
  1. 7
    0
      src/client.ts

+ 7
- 0
src/client.ts Voir le fichier

@@ -221,6 +221,13 @@ class Client {
221 221
     return '';
222 222
   }
223 223
 
224
+  /**
225
+   * 关闭客户端链接
226
+   */
227
+  public close(code?: number, reason?: string): void {
228
+    this.socket.close(code, reason);
229
+  }
230
+
224 231
   /**
225 232
    * 创建websocket链接
226 233
    */