Lines Matching refs:CommandQueue
21 CommandQueue::CommandQueue(provider::TaskRunner* task_runner, in CommandQueue() function in weave::CommandQueue
25 void CommandQueue::AddCommandAddedCallback(const CommandCallback& callback) { in AddCommandAddedCallback()
32 void CommandQueue::AddCommandRemovedCallback(const CommandCallback& callback) { in AddCommandRemovedCallback()
36 void CommandQueue::AddCommandHandler( in AddCommandHandler()
73 void CommandQueue::Add(std::unique_ptr<CommandInstance> instance) { in Add()
93 void CommandQueue::RemoveLater(const std::string& id) { in RemoveLater()
106 bool CommandQueue::Remove(const std::string& id) { in Remove()
118 void CommandQueue::Cleanup(const base::Time& cutoff_time) { in Cleanup()
125 void CommandQueue::ScheduleCleanup(base::TimeDelta delay) { in ScheduleCleanup()
128 base::Bind(&CommandQueue::PerformScheduledCleanup, in ScheduleCleanup()
133 void CommandQueue::PerformScheduledCleanup() { in PerformScheduledCleanup()
140 CommandInstance* CommandQueue::Find(const std::string& id) const { in Find()