NIMSDK-AOS  10.6.0
AVChatCallback.java
浏览该文件的文档.
1 /*
2  * Copyright (c) 2014-2018 NetEase, Inc.
3  * All right reserved.
4  */
5 
6 package com.netease.nimlib.sdk.avchat;
7 
11 public interface AVChatCallback<T> {
12 
13  void onSuccess(T t);
14 
15  void onFailed(int code);
16 
17  void onException(Throwable exception);
18 
19 }