Schedules
Schedule Overview
Action Scheduler schedules describe when an action should run and whether it recurs. Schedules implement ActionScheduler_Schedule and are attached to...
ActionScheduler_SimpleSchedule
ActionScheduler_SimpleSchedule represents a one-time schedule that runs at a single date/time and never recurs. Class definition class ActionScheduler_SimpleSchedule extends ActionScheduler_Abstract_Schedule...
ActionScheduler_CanceledSchedule
ActionScheduler_CanceledSchedule represents a canceled action. It explicitly has no next run, even if a scheduled date exists. Class definition class...
ActionScheduler_CronSchedule
ActionScheduler_CronSchedule represents a recurring schedule based on a cron expression and the CronExpression parser. Class definition class ActionScheduler_CronSchedule extends ActionScheduler_Abstract_RecurringSchedule...
ActionScheduler_IntervalSchedule
ActionScheduler_IntervalSchedule represents a recurring schedule that runs at fixed intervals measured in seconds. Class definition class ActionScheduler_IntervalSchedule extends ActionScheduler_Abstract_RecurringSchedule implements...
ActionScheduler_NullSchedule
ActionScheduler_NullSchedule represents an async action with no scheduled date. It intentionally has no run time and is used for actions...