[2.14.0]BadCase三期-录包管理

This commit is contained in:
xuxinchao
2023-02-07 20:15:48 +08:00
parent 044050a4e6
commit 87543b9696
24 changed files with 812 additions and 82 deletions

View File

@@ -1,6 +1,7 @@
package com.mogo.eagle.core.function.call.autopilot
import androidx.annotation.Nullable
import bag_manager.BagManagerOuterClass
import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotRecordListener
import com.mogo.eagle.core.function.call.base.CallerBase
import mogo.telematics.pad.MessagePad
@@ -78,5 +79,16 @@ object CallerAutopilotRecordListenerManager : CallerBase() {
}
}
/**
* 录包任务管理应答
*/
fun invokeBagManagerResult(bagManager: BagManagerOuterClass.BagManager){
M_AUTOPILOT_RECORD_LISTENERS.forEach{
val tag = it.key
val listener = it.value
listener.onBagManagerResult(bagManager)
}
}
}