Interface JobMasterServiceFactory
- All Known Implementing Classes:
DefaultJobMasterServiceFactory
public interface JobMasterServiceFactory
Factory for the
JobMasterService.-
Method Summary
Modifier and TypeMethodDescriptioncreateJobMasterService(UUID leaderSessionId, OnCompletionActions onCompletionActions) Creates a newJobMasterServicefor the given leaderSessionId and onCompletionActions.
-
Method Details
-
createJobMasterService
CompletableFuture<JobMasterService> createJobMasterService(UUID leaderSessionId, OnCompletionActions onCompletionActions) Creates a newJobMasterServicefor the given leaderSessionId and onCompletionActions.- Parameters:
leaderSessionId- leaderSessionId for which to create aJobMasterServiceonCompletionActions- onCompletionActions which are given to the createdJobMasterService- Returns:
- Future which contains the newly created
JobMasterService
-