Searched refs:countExpect (Results 1 – 2 of 2) sorted by relevance
136 if (countExpect == 0 || cumulatedInsertList_.size() >= countExpect) { in WaitUntilReachRecordCount()140 waitRecordsFunc = [this, countExpect]()->bool { in WaitUntilReachRecordCount()142 this->cumulatedInsertList_.size(), countExpect); in WaitUntilReachRecordCount()143 return this->cumulatedInsertList_.size() >= countExpect; in WaitUntilReachRecordCount()147 if (countExpect == 0 || cumulatedUpdateList_.size() >= countExpect) { in WaitUntilReachRecordCount()151 waitRecordsFunc = [this, countExpect]()->bool { in WaitUntilReachRecordCount()153 this->cumulatedUpdateList_.size(), countExpect); in WaitUntilReachRecordCount()154 return this->cumulatedUpdateList_.size() >= countExpect; in WaitUntilReachRecordCount()158 if (countExpect == 0 || cumulatedDeleteList_.size() >= countExpect) { in WaitUntilReachRecordCount()162 waitRecordsFunc = [this, countExpect]()->bool { in WaitUntilReachRecordCount()[all …]
55 …void WaitUntilReachRecordCount(unsigned int countExpect, ListType waitWhat, uint32_t timeout = 0) …