迁移感知绘制数据监听MapIdentifySubscriber

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2022-04-06 20:11:50 +08:00
parent ef8109543b
commit 9620e428ef
4 changed files with 75 additions and 29 deletions

View File

@@ -0,0 +1,17 @@
package com.mogo.eagle.core.function.api.base
/**
* 公共的订阅接口定义
*/
interface IMoGoSubscriber {
/**
* 创建
*/
fun onCrate()
/**
* 销毁
*/
fun onDestroy()
}