[3.4.0]增加V2X消息埋点统计

This commit is contained in:
xuxinchao
2023-07-24 21:00:48 +08:00
parent 5000a87d2e
commit 2ce531235c
16 changed files with 207 additions and 25 deletions

View File

@@ -12,5 +12,7 @@ interface IFuncBizProvider {
/**
* 根据lineId获取整条道路的V2X事件
*/
fun onV2XEvents(v2XEventData: List<V2XEventData>?) {}
fun onV2XEvents(v2XEventData: List<V2XEventData>?) {}
fun onAttrZombieAnalyticsEvent(){}
}

View File

@@ -1,5 +1,6 @@
package com.mogo.eagle.core.function.api.datacenter.obu
import com.mogo.eagle.core.data.enums.CommunicationType
import com.mogo.eagle.core.data.enums.DataSourceType
/**
@@ -15,6 +16,6 @@ interface IMoGoObuSaveMessageListener {
* @param tts 事件语音播报
* @param sourceType 来源
*/
fun onMoGoObuSaveMessage(type: String, content: String, tts: String, sourceType: DataSourceType)
fun onMoGoObuSaveMessage(type: String, content: String, tts: String, sourceType: DataSourceType, communicationType: CommunicationType)
}