Interface Job


  • 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.
    Author:
    Ceki Gülcü
    • Method Detail

      • execute

        void execute()
        Execute job.