| 52 | } |
| 53 | |
| 54 | void RpcClientBase::DoIssueRpcCall(RpcContext *ctx) { |
| 55 | ctx->destination = rpc_manager_->GetChannel(); |
| 56 | ctx->destination->IssueRpcCall(ctx); |
| 57 | } |
| 58 | |
| 59 | std::unique_ptr<RpcClient> NewRpcClient( |
| 60 | std::shared_ptr<ServerMonitor> monitor, size_t shard_index, |
nothing calls this directly
no test coverage detected