| 127 | } |
| 128 | |
| 129 | void RpcClient::ClearMasterKV(const std::string& k) { |
| 130 | ClientCall<CtrlMethod::kClearKV> call; |
| 131 | call.mut_request()->set_key(k); |
| 132 | call(GetMasterStub()); |
| 133 | } |
| 134 | |
| 135 | void RpcClient::PullKV(const std::string& k, std::function<void(const std::string&)> VGetter) { |
| 136 | ClientCall<CtrlMethod::kPullKV> call; |
nothing calls this directly
no test coverage detected