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

    Modifier and Type
    Method
    Description
    void
    Execute this job.
  • Method Details

    • execute

      void execute(JobContext context)
      Execute this job.
      Parameters:
      context - The context of the job.