Lines Matching defs:queue
528 if (auto queue = queues_.find(queueId); queue != queues_.end()) {
529 return queue->second;
531 CORE_LOG_W("Cannot get task queue, task queue not registered: %s", BASE_NS::to_string(queueId).data());
535 bool ObjectRegistry::RegisterTaskQueue(const ITaskQueue::Ptr& queue, const BASE_NS::Uid& queueId)
538 if (!queue) {
543 // Null queue but no existing queue found
546 queues_[queueId] = queue;