Interface JobMasterServiceFactory
-
- All Known Implementing Classes:
DefaultJobMasterServiceFactory
public interface JobMasterServiceFactoryFactory for theJobMasterService.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletableFuture<JobMasterService>createJobMasterService(UUID leaderSessionId, OnCompletionActions onCompletionActions)Creates a newJobMasterServicefor the given leaderSessionId and onCompletionActions.
-
-
-
Method Detail
-
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
-
-