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;
|
}
|
|