NIMSDK-AOS  9.19.10
RTSError.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.rts.constant;
2 
3 /**
4  * 错误
5  */
6 public interface RTSError {
7 
8  /**
9  * 录音设备异常
10  */
12 
13 
14  /**
15  * 播放设备异常
16  */
18 
19  /**
20  * 协议版本过低
21  */
23 
24  /**
25  * 对方协议版本过低
26  */
28 
29 
30 }
int AUDIO_PLAYOUT_ERROR
播放设备异常
Definition: RTSError.java:17
int AUDIO_RECORD_ERROR
录音设备异常
Definition: RTSError.java:11
int PROTOCOL_PEER_LOWER
对方协议版本过低
Definition: RTSError.java:27
int PROTOCOL_SELF_LOWER
协议版本过低
Definition: RTSError.java:22