| 83 | } |
| 84 | |
| 85 | ThreadQueueBasePtr IOThread::getInputQueue(const std::string& qname) { |
| 86 | std::lock_guard < std::mutex > lock(m_queue_bindings_mutex); |
| 87 | return input_queues[qname]; |
| 88 | } |
| 89 | |
| 90 | void IOThread::setOutputQueue(const std::string& qname, const ThreadQueueBasePtr& threadQueue) { |
| 91 | std::lock_guard < std::mutex > lock(m_queue_bindings_mutex); |