| 89 | } |
| 90 | |
| 91 | void RpcClient::WaitUntilDone(const std::string& name) { |
| 92 | ClientCall<CtrlMethod::kWaitUntilDone> call; |
| 93 | call.mut_request()->set_name(name); |
| 94 | call(GetResponsibleStub(name)); |
| 95 | } |
| 96 | |
| 97 | void RpcClient::PushKV(const std::string& k, std::function<void(std::string*)> VSetter) { |
| 98 | ClientCall<CtrlMethod::kPushKV> call; |
nothing calls this directly
no test coverage detected