Create a new RPC client that can be used to send requests to the RpcServer. @param conf The configuration to use. @param clientMetricGroup The client metric group @param isInnerClient Whether it is an inner client used for communicate from server to server. @return The RPC client.
(
Configuration conf, ClientMetricGroup clientMetricGroup, boolean isInnerClient)
| 42 | * @return The RPC client. |
| 43 | */ |
| 44 | static RpcClient create( |
| 45 | Configuration conf, ClientMetricGroup clientMetricGroup, boolean isInnerClient) { |
| 46 | return new NettyClient(conf, clientMetricGroup, isInnerClient); |
| 47 | } |
no outgoing calls