1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.anyun.exam.lib;
|
| /**
| * 远程服务所提供的方法
| * MyApplication2
| * Created by lzw on 2019/6/5. 15:37:20
| * 邮箱:632393724@qq.com
| * All Rights Saved! Chongqing AnYun Tech co. LTD
| */
| public interface IAYExamInterface {
| //以下方法只是示例方法,生产环境需要删除
| void checkSignal(int type);
| void add();
| void registListener(IAYExamListener iayExamListener);
|
| void sendCmd(int cmd,String s);
| }
|
|