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 at_sendCmd(String s);
|
}
|