// IListenerlInterface.aidl
|
package com.anyun.exam.lib;
|
|
// Declare any non-default types here with import statements
|
|
interface IListenerInterface {
|
/**
|
* 远程服务给SDK的回调消息,不对外提供给APP客户端
|
* Demonstrates some basic types that you can use as parameters
|
* and return values in AIDL.
|
*/
|
void onMessageArrived(int cmd, String json);
|
}
|