[2.15.0]新增停止轮询查V2X事件的接口

This commit is contained in:
chenfufeng
2023-04-19 17:56:08 +08:00
parent 469a2e618b
commit 57276f4a3e
2 changed files with 6 additions and 0 deletions

View File

@@ -107,6 +107,10 @@ class FuncBizProvider : IMoGoFuncBizProvider {
OverViewDataManager.getAllV2XEventsByLineId(MoGoAiCloudClientConfig.getInstance().sn)
}
override fun stopQueryV2XEvents() {
OverViewDataManager.stopQueryV2XEvents()
}
override fun queryV2XEvents() {
if ((AppIdentityModeUtils.isTaxi(FunctionBuildConfig.appIdentityMode) && !FunctionBuildConfig.isNewV2NData)
|| AppIdentityModeUtils.isBus(FunctionBuildConfig.appIdentityMode)) {

View File

@@ -73,6 +73,8 @@ interface IMoGoFuncBizProvider : IMoGoFunctionServerProvider {
fun getAllV2XEvents()
fun stopQueryV2XEvents()
fun queryV2XEvents()