hxb
2022-09-08 2a01ef5e49422cca49bc7476fc1b8be8c8556561
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.hdl.sdk.link.socket.annotation;
 
 
 
/**
 * Created by Tong on 2021/9/22.
 */
/**
 * 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;
}