C++ (Qt)// ожидание запроса в очереди. Выполняется в клиентском потокеint CThreadSafeQueue::waitForQueue(int requestId, int msecs){ CQueueLoop loop(this, requestId); return loop.waitForQueue(msecs);}
connect(queue, &CThreadSafeQueue::notify, this, &CQueueLoop::notificationSlot, Qt::QueuedConnection);
this->exit(1);