Interface Job
- All Known Implementing Classes:
JobSchedulerImpl
@ConsumerType
public interface Job
A job is executed by the
Scheduler service.
If the implementation of the job requires certain environment information
it can implement this interface to get additional information
through the provided JobContext.
If no additional information is required, implementing Runnable is
sufficient.-
Method Summary
-
Method Details
-
execute
Execute this job.- Parameters:
context- The context of the job.
-