| 83 | } |
| 84 | |
| 85 | void RpcClient::NotifyDone(const std::string& name) { |
| 86 | ClientCall<CtrlMethod::kNotifyDone> call; |
| 87 | call.mut_request()->set_name(name); |
| 88 | call(GetResponsibleStub(name)); |
| 89 | } |
| 90 | |
| 91 | void RpcClient::WaitUntilDone(const std::string& name) { |
| 92 | ClientCall<CtrlMethod::kWaitUntilDone> call; |
nothing calls this directly
no test coverage detected