Package | Description |
---|---|
org.quartz |
The main package of Quartz, containing the client-side interfaces.
|
Modifier and Type | Method and Description |
---|---|
SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatForever()
Specify that the trigger will repeat indefinitely.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatHourlyForever()
Create a SimpleScheduleBuilder set to repeat forever with a 1 hour interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatHourlyForever(int hours)
Create a SimpleScheduleBuilder set to repeat forever with an interval
of the given number of hours.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatHourlyForTotalCount(int count)
Create a SimpleScheduleBuilder set to repeat the given number
of times - 1 with a 1 hour interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatHourlyForTotalCount(int count,
int hours)
Create a SimpleScheduleBuilder set to repeat the given number
of times - 1 with an interval of the given number of hours.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatMinutelyForever()
Create a SimpleScheduleBuilder set to repeat forever with a 1 minute interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatMinutelyForever(int minutes)
Create a SimpleScheduleBuilder set to repeat forever with an interval
of the given number of minutes.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatMinutelyForTotalCount(int count)
Create a SimpleScheduleBuilder set to repeat the given number
of times - 1 with a 1 minute interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatMinutelyForTotalCount(int count,
int minutes)
Create a SimpleScheduleBuilder set to repeat the given number
of times - 1 with an interval of the given number of minutes.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatSecondlyForever()
Create a SimpleScheduleBuilder set to repeat forever with a 1 second interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatSecondlyForever(int seconds)
Create a SimpleScheduleBuilder set to repeat forever with an interval
of the given number of seconds.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatSecondlyForTotalCount(int count)
Create a SimpleScheduleBuilder set to repeat the given number
of times - 1 with a 1 second interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatSecondlyForTotalCount(int count,
int seconds)
Create a SimpleScheduleBuilder set to repeat the given number
of times - 1 with an interval of the given number of seconds.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.simpleSchedule()
Create a SimpleScheduleBuilder.
|
SimpleScheduleBuilder |
SimpleScheduleBuilder.withIntervalInHours(int intervalInHours)
Specify a repeat interval in minutes - which will then be multiplied
by 60 * 60 * 1000 to produce milliseconds.
|
SimpleScheduleBuilder |
SimpleScheduleBuilder.withIntervalInMilliseconds(long intervalInMillis)
Specify a repeat interval in milliseconds.
|
SimpleScheduleBuilder |
SimpleScheduleBuilder.withIntervalInMinutes(int intervalInMinutes)
Specify a repeat interval in minutes - which will then be multiplied
by 60 * 1000 to produce milliseconds.
|
SimpleScheduleBuilder |
SimpleScheduleBuilder.withIntervalInSeconds(int intervalInSeconds)
Specify a repeat interval in seconds - which will then be multiplied
by 1000 to produce milliseconds.
|
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionFireNow()
If the Trigger misfires, use the
SimpleTrigger.MISFIRE_INSTRUCTION_FIRE_NOW instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionIgnoreMisfires()
If the Trigger misfires, use the
Trigger.MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionNextWithExistingCount()
If the Trigger misfires, use the
SimpleTrigger.MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionNextWithRemainingCount()
If the Trigger misfires, use the
SimpleTrigger.MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_REMAINING_COUNT instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionNowWithExistingCount()
If the Trigger misfires, use the
SimpleTrigger.MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_EXISTING_REPEAT_COUNT instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionNowWithRemainingCount()
If the Trigger misfires, use the
SimpleTrigger.MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_REMAINING_REPEAT_COUNT instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withRepeatCount(int triggerRepeatCount)
Specify a the number of time the trigger will repeat - total number of
firings will be this number + 1.
|
Copyright 2001-2019, Terracotta, Inc.