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