Package org.apache.flink.runtime.rpc
Interface RpcGateway
-
- All Known Subinterfaces:
CheckpointCoordinatorGateway
,DispatcherGateway
,FencedRpcGateway<F>
,JobMasterGateway
,MetricQueryServiceGateway
,ResourceManagerGateway
,RestfulGateway
,RpcServer
,TaskExecutorGateway
- All Known Implementing Classes:
ActiveResourceManager
,Dispatcher
,FencedPekkoInvocationHandler
,FencedRpcEndpoint
,JobMaster
,MetricQueryService
,MiniDispatcher
,NonLeaderRetrievalRestfulGateway
,ResourceManager
,RpcEndpoint
,StandaloneDispatcher
,StandaloneResourceManager
,TaskExecutor
,TaskExecutorGatewayDecoratorBase
public interface RpcGateway
Rpc gateway interface which has to be implemented by Rpc gateways.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAddress()
Returns the fully qualified address under which the associated rpc endpoint is reachable.String
getHostname()
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
-
-