| 88 | } |
| 89 | |
| 90 | void IOThread::setOutputQueue(const std::string& qname, const ThreadQueueBasePtr& threadQueue) { |
| 91 | std::lock_guard < std::mutex > lock(m_queue_bindings_mutex); |
| 92 | output_queues[qname] = threadQueue; |
| 93 | this->onBindOutput(qname, threadQueue); |
| 94 | } |
| 95 | |
| 96 | ThreadQueueBasePtr IOThread::getOutputQueue(const std::string& qname) { |
| 97 | std::lock_guard < std::mutex > lock(m_queue_bindings_mutex); |
no test coverage detected