I am running a blocking QLocalServer
in a thread:
void QThread::stopServer()
{
m_abort = true;
m_server.close(); // QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread
}
void QThread::run()
{
m_server = new QLocalServer();
m_server->Listen("PipeName");
while (!m_abort)
{
if (m_server->waitForNewConnection())
{
// handle the connection
}
}
delete m_server;
}
How can the server be closed from another thread? Or is the only way to use non-blocking events?
Regards,
Why just not wait until
run()
closes or deletes the connection itself, afterm_abort
will be set?Please note you can use the standard QThread::requestInterruption and isInterruptionRequested() methods instead of creating own
m_abort
variable.From the doc:
So you can write: