1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | package com.easysocket.connection.action; 
 |    
 |  /** 
 |   * Author:Alex 
 |   * Date:2019/6/1 
 |   * Note: 
 |   */ 
 |  public interface SocketAction { 
 |      // 连接成功 
 |      String ACTION_CONN_SUCCESS="action_conn_success"; 
 |      // 连接失败 
 |      String ACTION_CONN_FAIL="action_conn_fail"; 
 |      // 断开连接 
 |      String ACTION_DISCONNECTION="action_disconnection"; 
 |  } 
 |  
  |