3#include "PluginThread.h"
4#include "ManageBackend.h"
6#include <QLoggingCategory>
8static Q_LOGGING_CATEGORY(log,
"Client.Plugin.Thread")
13 qDebug(log) << Q_FUNC_INFO;
16CPluginThread::~CPluginThread()
18 qDebug(log) << Q_FUNC_INFO;
27 qDebug(log) <<
"CPluginThread::run() start";
30 check = connect(
this, SIGNAL(sigNewBackend(
COperate*)),
31 &mb, SLOT(slotNewBackend(
COperate*)));
33 check = connect(
this, SIGNAL(sigDeleteBackend(
COperate*)),
34 &mb, SLOT(slotDeleteBackend(
COperate*)));
38 qDebug(log) <<
"CPluginThread::run() end";
Manage the backend of operate.
One thread handles multiple operate.
virtual void run() override
One thread handles multiple operate.