Interface Job

All Known Implementing Classes:
CustomSQLDBReceiver.CustomReceiverJob, DBReceiverJob

public interface Job
Job is a very simple interface. It only has a single method execute() which is called by the Scheduler when a task is ready for execution.

It is assumed that the execution context are contained within the implementing Job itself.
  • Method Summary

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

    • execute

      void execute()
      Execute job.