NIMSDK-AOS  9.19.0
RTSCallback.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.rts;
2 
3 /**
4  * RTS回调接口
5  */
6 public interface RTSCallback<T> {
7  void onSuccess(T t);
8 
9  void onFailed(int code);
10 
11  void onException(Throwable exception);
12 }
void onException(Throwable exception)