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