| 160 | } |
| 161 | |
| 162 | void RpcClient::Clear() { |
| 163 | ClientCall<CtrlMethod::kClear> call; |
| 164 | call(GetThisStub()); |
| 165 | std::unique_lock<std::mutex> lck(done_names_mtx_); |
| 166 | done_names_.clear(); |
| 167 | } |
| 168 | |
| 169 | int32_t RpcClient::IncreaseCount(const std::string& k, int32_t v) { |
| 170 | ClientCall<CtrlMethod::kIncreaseCount> call; |
no test coverage detected