1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.anyun.exam.lib;
|
| /**
| *
| * SDK回调给客户端的消息
| * MyApplication2
| * Created by lzw on 2019/6/5. 15:43:48
| * 邮箱:632393724@qq.com
| * All Rights Saved! Chongqing AnYun Tech co. LTD
| */
| public interface IAYExamListener {
| void callBackMsg(int code,String json);
| void bindStatus(int code);//0-绑定成功 -1 binderDied 1
| }
|
|