562935844@qq.com
2022-05-13 a3f9e5ce8dce3d86a60a79b85ce44424a612c6fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.hdl.sdk.socket.annotation;
 
/**
 * Created by Tong on 2021/9/22.
 */
public class ConnectStatus {
 
    /**
     * 连接中
     */
    public static int CONNECTING = 0;
 
    /**
     * 连接成功
     */
    public static int CONNECTED = 1;
 
    /**
     * 连接关闭
     */
    public static int DISCONNECT = 2;
}