Package org.apache.flink.runtime.rpc
Interface RpcGateway
-
- All Known Subinterfaces:
FencedRpcGateway<F>,RpcServer
- All Known Implementing Classes:
FencedRpcEndpoint,RpcEndpoint
public interface RpcGatewayRpc gateway interface which has to be implemented by Rpc gateways.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAddress()Returns the fully qualified address under which the associated rpc endpoint is reachable.StringgetHostname()Returns the fully qualified hostname under which the associated rpc endpoint is reachable.
-
-
-
Method Detail
-
getAddress
String getAddress()
Returns the fully qualified address under which the associated rpc endpoint is reachable.- Returns:
- Fully qualified (RPC) address under which the associated rpc endpoint is reachable
-
getHostname
String getHostname()
Returns the fully qualified hostname under which the associated rpc endpoint is reachable.- Returns:
- Fully qualified hostname under which the associated rpc endpoint is reachable
-
-