fix bug of model and add func obu track

This commit is contained in:
zhongchao
2022-08-25 11:58:30 +08:00
parent 6b3881ce60
commit d2c11480be
13 changed files with 302 additions and 113 deletions

View File

@@ -1,6 +1,7 @@
package com.mogo.eagle.core.function.api.obu
import com.mogo.eagle.core.data.obu.ObuStatusInfo
import com.mogo.eagle.core.data.traffic.TrafficData
/**
* @author xiaoyuzhou
@@ -12,11 +13,29 @@ interface IMoGoObuStatusListener {
* 检查OBU连链接信息
* @param obuStatusInfo OBU 状态信息
*/
fun onObuStatusResponse(obuStatusInfo: ObuStatusInfo)
fun onObuStatusResponse(obuStatusInfo: ObuStatusInfo){
}
/**
* v2i时延
*/
fun onObuV2iDelayTime(delayTime: Long)
fun onObuV2iDelayTime(delayTime: Long){
}
/**
* 更新obu Tracker 预警信息
*/
fun updateTrackerWarningInfo(trafficData: TrafficData){
}
/**
* 移除obu Tracker 预警信息
*/
fun removeTrackerWarningInfo(trafficData: TrafficData){
}
}