1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package safeluck.drive.evaluation.cEventCenter;
|
| /**
| * 事件监听器
| * MyApplication2
| * Created by lzw on 2020/1/2. 14:00:14
| * 邮箱:632393724@qq.com
| * All Rights Saved! Chongqing AnYun Tech co. LTD
| */
| public interface ICEventListener {
|
| /**
| * 事件回调函数
| *
| * 如果obj使用了对象池
| * 那么事件完成后,obj即自动会受到对象池,请不要再其他线程继续使用,否则可能会导致数据不正常
| * @param topic
| * @param msgCode
| * @param resultCode
| * @param obj
| */
| void onCEvent(String topic, int msgCode, int resultCode, Object obj);
| }
|
|