Interface JobExecutorFactory
-
- All Implemented Interfaces:
@FunctionalInterface() public interface JobExecutorFactory
Job Executor Provider/Factory
Provides JobExecutor instances to be used when running jobs from the internal job queue(s).
- Since:
1.0.0
Elizabeth Paige Harper https://github.com/foxcapades
-
-
Method Summary
Modifier and Type Method Description abstract JobExecutornewJobExecutor(JobExecutorContext ctx)Constructs a new JobExecutor instance. -
-
Method Detail
-
newJobExecutor
abstract JobExecutor newJobExecutor(JobExecutorContext ctx)
Constructs a new JobExecutor instance.
- Parameters:
ctx- Context for which a new JobExecutor instance is being requested.- Returns:
A new JobExecutor instance.
-
-
-
-