Interface JobExecutor
-
- All Implemented Interfaces:
@FunctionalInterface() public interface JobExecutor
Async Job Executor
Executes a configured job.
- Since:
1.0.0
Elizabeth Paige Harper https://github.com/foxcapades
-
-
Method Summary
Modifier and Type Method Description abstract JobResultexecute(JobContext ctx)Executes the job configured by the given JobContext. -
-
Method Detail
-
execute
abstract JobResult execute(JobContext ctx)
Executes the job configured by the given JobContext.
- Parameters:
ctx- Context in/for the job that is to be executed.- Returns:
Job completion status.
-
-
-
-