fix bug of model and add func obu track
This commit is contained in:
@@ -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){
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user