Interface ClusterClientServiceLoader
-
- All Known Implementing Classes:
DefaultClusterClientServiceLoader
public interface ClusterClientServiceLoader
An interface used to discover the appropriatecluster client factory
based on the providedConfiguration
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stream<String>
getApplicationModeTargetNames()
Loads and returns a stream of the names of all available execution target names forApplication Mode
.<ClusterID>
ClusterClientFactory<ClusterID>getClusterClientFactory(Configuration configuration)
Discovers the appropriateClusterClientFactory
based on the provided configuration.
-
-
-
Method Detail
-
getClusterClientFactory
<ClusterID> ClusterClientFactory<ClusterID> getClusterClientFactory(Configuration configuration)
Discovers the appropriateClusterClientFactory
based on the provided configuration.- Parameters:
configuration
- the configuration based on which the appropriate factory is going to be used.- Returns:
- the appropriate
ClusterClientFactory
.
-
-