NIMSDK-AOS  9.19.0
AVChatConnectStatus.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.avchat.constant;
2 
3 import com.netease.nrtc.sdk.NRtcConstants;
4 
5 public interface AVChatConnectStatus {
6 
7  /**
8  * 不在通话中
9  */
10  int NONE = NRtcConstants.ConnectStatus.NONE;
11 
12  /**
13  * 正在连接中
14  */
15  int CONNECT_ING = NRtcConstants.ConnectStatus.CONNECT_ING;
16 
17 
18  /**
19  * 正在通话中
20  */
21  int CONNECTED = NRtcConstants.ConnectStatus.CONNECTED;
22 
23 
24  /**
25  * 正在重新连接中
26  */
27  int RE_CONNECT_ING = NRtcConstants.ConnectStatus.RE_CONNECT_ING;
28 
29 
30  /**
31  * 连接断开
32  */
33  int DISCONNECT = NRtcConstants.ConnectStatus.DISCONNECT;
34 }