| Package | Description |
|---|---|
| com.helger.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 nHours)
Create a SimpleScheduleBuilder set to repeat forever with an interval of
the given number of hours.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatHourlyForTotalCount(int nCount)
Create a SimpleScheduleBuilder set to repeat the given number of times - 1
with a 1 hour interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatHourlyForTotalCount(int nCount,
int nHours)
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 nCount)
Create a SimpleScheduleBuilder set to repeat the given number of times - 1
with a 1 minute interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatMinutelyForTotalCount(int nCount,
int nMinutes)
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 nCount)
Create a SimpleScheduleBuilder set to repeat the given number of times - 1
with a 1 second interval.
|
static SimpleScheduleBuilder |
SimpleScheduleBuilder.repeatSecondlyForTotalCount(int nCount,
int nSeconds)
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 nIntervalInMillis)
Specify a repeat interval in milliseconds.
|
SimpleScheduleBuilder |
SimpleScheduleBuilder.withIntervalInMinutes(int nIntervalInMinutes)
Specify a repeat interval in minutes - which will then be multiplied by 60
* 1000 to produce milliseconds.
|
SimpleScheduleBuilder |
SimpleScheduleBuilder.withIntervalInSeconds(int nIntervalInSeconds)
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
ITrigger.EMisfireInstruction.MISFIRE_INSTRUCTION_FIRE_ONCE_NOW instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionIgnoreMisfires()
If the Trigger misfires, use the
ITrigger.EMisfireInstruction.MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY
instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionNextWithExistingCount()
If the Trigger misfires, use the
ITrigger.EMisfireInstruction.MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT
instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionNextWithRemainingCount()
If the Trigger misfires, use the
ITrigger.EMisfireInstruction.MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_REMAINING_COUNT
instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionNowWithExistingCount()
If the Trigger misfires, use the
ITrigger.EMisfireInstruction.MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_EXISTING_REPEAT_COUNT
instruction. |
SimpleScheduleBuilder |
SimpleScheduleBuilder.withMisfireHandlingInstructionNowWithRemainingCount()
If the Trigger misfires, use the
ITrigger.EMisfireInstruction.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 © 2016–2021 Philip Helger. All rights reserved.