AVChatControllerCallback.java 209 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12
package com.yidianling.avchatkit.module;

/**
 * Created by winnie on 2017/12/10.
 */

public interface AVChatControllerCallback<T> {

    void onSuccess(T t);

    void onFailed(int code, String errorMsg);
}