HomeSort by relevance Sort by last modified time
    Searched full:update_queue_ (Results 1 - 2 of 2) sorted by null

  /external/libweave/src/commands/
cloud_command_proxy.cc 71 if (update_queue_.empty() || update_queue_.back().first != id) {
74 update_queue_.push_back(std::make_pair(id, std::move(patch)));
79 if (update_queue_.size() == 1 && command_update_in_progress_) {
82 update_queue_.push_back(std::make_pair(id, std::move(patch)));
85 update_queue_.back().second->MergeDictionary(patch.get());
98 if (command_update_in_progress_ || update_queue_.empty())
108 if (update_queue_.front().first > last_state_update_id_)
125 auto iter = update_queue_.begin();
127 while (iter != update_queue_.end())
    [all...]
cloud_command_proxy.h 83 std::deque<UpdateQueueEntry> update_queue_; member in class:weave::CloudCommandProxy

Completed in 3354 milliseconds