Interface CronJob


public interface CronJob
One task that is performed on a routine basis.
Author:
AO Industries, Inc.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static enum 
    The various executors that may be selected to run this job.
    static enum 
    The set of possible concurrency settings for cron jobs.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the executor that should be used for this job.
    default String
    Gets the name for this cron job.
    Gets the schedule for this cron job.
    Gets the job scheduling mode.
    default int
    Gets the Thread priority for this job.
    void
    run(int minute, int hour, int dayOfMonth, int month, int dayOfWeek, int year)
    Performs the scheduled task.