public class CalendarIntervalScheduleBuilder extends ScheduleBuilder<CalendarIntervalTrigger>
CalendarIntervalScheduleBuilder
is a ScheduleBuilder
that defines calendar time (day, week, month, year) interval-based
schedules for Trigger
s.
Quartz provides a builder-style API for constructing scheduling-related
entities via a Domain-Specific Language (DSL). The DSL can best be
utilized through the usage of static imports of the methods on the classes
TriggerBuilder
, JobBuilder
,
DateBuilder
, JobKey
, TriggerKey
and the various ScheduleBuilder
implementations.
Client code can then use the DSL to write code such as this:
JobDetail job = newJob(MyJob.class) .withIdentity("myJob") .build(); Trigger trigger = newTrigger() .withIdentity(triggerKey("myTrigger", "myTriggerGroup")) .withSchedule(withIntervalInDays(3)) .startAt(futureDate(10, MINUTES)) .build(); scheduler.scheduleJob(job, trigger);
Modifier | Constructor and Description |
---|---|
protected |
CalendarIntervalScheduleBuilder() |
Modifier and Type | Method and Description |
---|---|
MutableTrigger |
build()
Build the actual Trigger -- NOT intended to be invoked by end users,
but will rather be invoked by a TriggerBuilder which this
ScheduleBuilder is given to.
|
static CalendarIntervalScheduleBuilder |
calendarIntervalSchedule()
Create a CalendarIntervalScheduleBuilder.
|
CalendarIntervalScheduleBuilder |
inTimeZone(TimeZone timezone)
The
TimeZone in which to base the schedule. |
CalendarIntervalScheduleBuilder |
preserveHourOfDayAcrossDaylightSavings(boolean preserveHourOfDay)
If intervals are a day or greater, this property (set to true) will
cause the firing of the trigger to always occur at the same time of day,
(the time of day of the startTime) regardless of daylight saving time
transitions.
|
CalendarIntervalScheduleBuilder |
skipDayIfHourDoesNotExist(boolean skipDay)
If intervals are a day or greater, and
preserveHourOfDayAcrossDaylightSavings property is set to true, and the
hour of the day does not exist on a given day for which the trigger
would fire, the day will be skipped and the trigger advanced a second
interval if this property is set to true.
|
CalendarIntervalScheduleBuilder |
withInterval(int timeInterval,
DateBuilder.IntervalUnit unit)
Specify the time unit and interval for the Trigger to be produced.
|
CalendarIntervalScheduleBuilder |
withIntervalInDays(int intervalInDays)
Specify an interval in the IntervalUnit.DAY that the produced
Trigger will repeat at.
|
CalendarIntervalScheduleBuilder |
withIntervalInHours(int intervalInHours)
Specify an interval in the IntervalUnit.HOUR that the produced
Trigger will repeat at.
|
CalendarIntervalScheduleBuilder |
withIntervalInMinutes(int intervalInMinutes)
Specify an interval in the IntervalUnit.MINUTE that the produced
Trigger will repeat at.
|
CalendarIntervalScheduleBuilder |
withIntervalInMonths(int intervalInMonths)
Specify an interval in the IntervalUnit.MONTH that the produced
Trigger will repeat at.
|
CalendarIntervalScheduleBuilder |
withIntervalInSeconds(int intervalInSeconds)
Specify an interval in the IntervalUnit.SECOND that the produced
Trigger will repeat at.
|
CalendarIntervalScheduleBuilder |
withIntervalInWeeks(int intervalInWeeks)
Specify an interval in the IntervalUnit.WEEK that the produced
Trigger will repeat at.
|
CalendarIntervalScheduleBuilder |
withIntervalInYears(int intervalInYears)
Specify an interval in the IntervalUnit.YEAR that the produced
Trigger will repeat at.
|
CalendarIntervalScheduleBuilder |
withMisfireHandlingInstructionDoNothing()
If the Trigger misfires, use the
CalendarIntervalTrigger.MISFIRE_INSTRUCTION_DO_NOTHING instruction. |
CalendarIntervalScheduleBuilder |
withMisfireHandlingInstructionFireAndProceed()
If the Trigger misfires, use the
CalendarIntervalTrigger.MISFIRE_INSTRUCTION_FIRE_ONCE_NOW instruction. |
CalendarIntervalScheduleBuilder |
withMisfireHandlingInstructionIgnoreMisfires()
If the Trigger misfires, use the
Trigger.MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY instruction. |
public static CalendarIntervalScheduleBuilder calendarIntervalSchedule()
public MutableTrigger build()
build
in class ScheduleBuilder<CalendarIntervalTrigger>
TriggerBuilder.withSchedule(ScheduleBuilder)
public CalendarIntervalScheduleBuilder withInterval(int timeInterval, DateBuilder.IntervalUnit unit)
timeInterval
- the interval at which the trigger should repeat.unit
- the time unit (IntervalUnit) of the interval.CalendarIntervalTrigger.getRepeatInterval()
,
CalendarIntervalTrigger.getRepeatIntervalUnit()
public CalendarIntervalScheduleBuilder withIntervalInSeconds(int intervalInSeconds)
intervalInSeconds
- the number of seconds at which the trigger should repeat.CalendarIntervalTrigger.getRepeatInterval()
,
CalendarIntervalTrigger.getRepeatIntervalUnit()
public CalendarIntervalScheduleBuilder withIntervalInMinutes(int intervalInMinutes)
intervalInMinutes
- the number of minutes at which the trigger should repeat.CalendarIntervalTrigger.getRepeatInterval()
,
CalendarIntervalTrigger.getRepeatIntervalUnit()
public CalendarIntervalScheduleBuilder withIntervalInHours(int intervalInHours)
intervalInHours
- the number of hours at which the trigger should repeat.CalendarIntervalTrigger.getRepeatInterval()
,
CalendarIntervalTrigger.getRepeatIntervalUnit()
public CalendarIntervalScheduleBuilder withIntervalInDays(int intervalInDays)
intervalInDays
- the number of days at which the trigger should repeat.CalendarIntervalTrigger.getRepeatInterval()
,
CalendarIntervalTrigger.getRepeatIntervalUnit()
public CalendarIntervalScheduleBuilder withIntervalInWeeks(int intervalInWeeks)
intervalInWeeks
- the number of weeks at which the trigger should repeat.CalendarIntervalTrigger.getRepeatInterval()
,
CalendarIntervalTrigger.getRepeatIntervalUnit()
public CalendarIntervalScheduleBuilder withIntervalInMonths(int intervalInMonths)
intervalInMonths
- the number of months at which the trigger should repeat.CalendarIntervalTrigger.getRepeatInterval()
,
CalendarIntervalTrigger.getRepeatIntervalUnit()
public CalendarIntervalScheduleBuilder withIntervalInYears(int intervalInYears)
intervalInYears
- the number of years at which the trigger should repeat.CalendarIntervalTrigger.getRepeatInterval()
,
CalendarIntervalTrigger.getRepeatIntervalUnit()
public CalendarIntervalScheduleBuilder withMisfireHandlingInstructionIgnoreMisfires()
Trigger.MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY
instruction.Trigger.MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY
public CalendarIntervalScheduleBuilder withMisfireHandlingInstructionDoNothing()
CalendarIntervalTrigger.MISFIRE_INSTRUCTION_DO_NOTHING
instruction.CalendarIntervalTrigger.MISFIRE_INSTRUCTION_DO_NOTHING
public CalendarIntervalScheduleBuilder withMisfireHandlingInstructionFireAndProceed()
CalendarIntervalTrigger.MISFIRE_INSTRUCTION_FIRE_ONCE_NOW
instruction.CalendarIntervalTrigger.MISFIRE_INSTRUCTION_FIRE_ONCE_NOW
public CalendarIntervalScheduleBuilder inTimeZone(TimeZone timezone)
TimeZone
in which to base the schedule.timezone
- the time-zone for the schedule.CalendarIntervalTrigger.getTimeZone()
public CalendarIntervalScheduleBuilder preserveHourOfDayAcrossDaylightSavings(boolean preserveHourOfDay)
For example, without the property set, your trigger may have a start time of 9:00 am on March 1st, and a repeat interval of 2 days. But after the daylight saving transition occurs, the trigger may start firing at 8:00 am every other day.
If however, the time of day does not exist on a given day to fire (e.g. 2:00 am in the United States on the days of daylight saving transition), the trigger will go ahead and fire one hour off on that day, and then resume the normal hour on other days. If you wish for the trigger to never fire at the "wrong" hour, then you should set the property skipDayIfHourDoesNotExist.
public CalendarIntervalScheduleBuilder skipDayIfHourDoesNotExist(boolean skipDay)
CAUTION! If you enable this property, and your hour of day happens to be that of daylight savings transition (e.g. 2:00 am in the United States) and the trigger's interval would have had the trigger fire on that day, then you may actually completely miss a firing on the day of transition if that hour of day does not exist on that day! In such a case the next fire time of the trigger will be computed as double (if the interval is 2 days, then a span of 4 days between firings will occur).
Copyright 2001-2019, Terracotta, Inc.