|
@@ -134,9 +134,8 @@ namespace MIVA
|
|
|
void UserApp::StartTask()
|
|
|
{
|
|
|
// 挂起任务一
|
|
|
-
|
|
|
poolInfer.async([&](){
|
|
|
- if(this->m_Infer != NULL) m_Infer->StartTask();
|
|
|
+ if(this->m_Infer != NULL) m_Infer->ReadyTask();
|
|
|
});
|
|
|
|
|
|
// 挂起函数回调
|
|
@@ -158,6 +157,7 @@ namespace MIVA
|
|
|
return true;
|
|
|
}, nullptr);
|
|
|
|
|
|
+ poolInfer.start();
|
|
|
InfoL << "Task started successfully!";
|
|
|
}
|
|
|
|
|
@@ -238,7 +238,6 @@ namespace MIVA
|
|
|
vector<vector<std::string>> sqlRet;
|
|
|
// 接受到PIS发送的数据
|
|
|
PIDSServerResultMsg serverResultMag;
|
|
|
- InfoL << "wwwww";
|
|
|
// 反序列化
|
|
|
if(serverResultMag.Deserialization((uint8_t *)(buf->data()), buf->size()) == OK)
|
|
|
{
|
|
@@ -280,15 +279,8 @@ namespace MIVA
|
|
|
//监听关门信号
|
|
|
void UserApp::ListenClosed()
|
|
|
{
|
|
|
- static int num = 0;
|
|
|
- if(num == 0){
|
|
|
- // 创建推理线程池
|
|
|
- poolInfer.start();
|
|
|
- num++;
|
|
|
- }else{
|
|
|
- if(this->m_Infer != NULL) m_Infer->RestartTask();
|
|
|
- this->play = true;
|
|
|
- }
|
|
|
+ if(this->m_Infer != NULL) m_Infer->StartTask();
|
|
|
+ this->play = true;
|
|
|
}
|
|
|
// 监听推理数据
|
|
|
void UserApp::ListenInferData()
|