| 43 | class RpcClientBase : public RpcClient { |
| 44 | public: |
| 45 | RpcClientBase() : rpc_manager_(ImplFactory<RpcManager>::New()), |
| 46 | num_retries_(kRpcRetryCount) { } |
| 47 | |
| 48 | bool Initialize(std::shared_ptr<ServerMonitor> monitor, |
| 49 | size_t shard_index, const GraphConfig &config) override; |
nothing calls this directly
no outgoing calls
no test coverage detected