wpc
2018-11-27 c52fb0e4d9168e75390b3cf3536d66c06c50d605
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.huawei.android.hms.agent.common;
 
/**
 * 回调接口
 */
public interface ICallbackResult<R> {
    /**
     * 回调接口
     * @param rst 结果码
     * @param result 结果信息
     */
    void onResult(int rst, R result);
}