public interface DailyTimeIntervalMonthTrigger
extends org.quartz.Trigger
| 限定符和类型 | 字段和说明 |
|---|---|
static int |
MISFIRE_INSTRUCTION_DO_NOTHING
Instructs the
that upon a mis-fire
situation, the wants to have it's
next-fire-time updated to the next time in the schedule after the
current time (taking into account any associated ,
but it does not want to be fired now. |
static int |
MISFIRE_INSTRUCTION_FIRE_ONCE_NOW
Instructs the
that upon a mis-fire
situation, the wants to be
fired now by Scheduler. |
static int |
REPEAT_INDEFINITELY
Used to indicate the 'repeat count' of the trigger is indefinite.
|
| 限定符和类型 | 方法和说明 |
|---|---|
Set<Integer> |
getDaysOfMonth()
The days of the month upon which to fire.
|
org.quartz.TimeOfDay |
getEndTimeOfDay()
The time of day to complete firing at the given interval.
|
int |
getRepeatCount()
Get the the number of times for interval this trigger should
repeat, after which it will be automatically deleted.
|
int |
getRepeatInterval()
Get the the time interval that will be added to the
DateIntervalTrigger's
fire time (in the set repeat interval unit) in order to calculate the time of the
next trigger repeat. |
org.quartz.DateBuilder.IntervalUnit |
getRepeatIntervalUnit()
Get the interval unit - the time unit on with the interval applies.
|
org.quartz.TimeOfDay |
getStartTimeOfDay()
The time of day to start firing at the given interval.
|
int |
getTimesTriggered()
Get the number of times the
DateIntervalTrigger has already
fired. |
org.quartz.TriggerBuilder<DailyTimeIntervalMonthTrigger> |
getTriggerBuilder()
triggerBuilder
|
static final int REPEAT_INDEFINITELY
Used to indicate the 'repeat count' of the trigger is indefinite. Or in other words, the trigger should repeat continually until the trigger's ending timestamp.
static final int MISFIRE_INSTRUCTION_FIRE_ONCE_NOW
Instructs the that upon a mis-fire
situation, the Scheduler wants to be
fired now by DailyTimeIntervalTriggerScheduler.
static final int MISFIRE_INSTRUCTION_DO_NOTHING
Instructs the that upon a mis-fire
situation, the Scheduler wants to have it's
next-fire-time updated to the next time in the schedule after the
current time (taking into account any associated DailyTimeIntervalTrigger,
but it does not want to be fired now.
Calendar
org.quartz.DateBuilder.IntervalUnit getRepeatIntervalUnit()
Get the interval unit - the time unit on with the interval applies.
The only intervals that are valid for this type of trigger are DateBuilder.IntervalUnit#SECOND,
DateBuilder.IntervalUnit#MINUTE, and DateBuilder.IntervalUnit#HOUR.
int getRepeatCount()
Get the the number of times for interval this trigger should repeat, after which it will be automatically deleted.
REPEAT_INDEFINITELYint getRepeatInterval()
Get the the time interval that will be added to the DateIntervalTrigger's
fire time (in the set repeat interval unit) in order to calculate the time of the
next trigger repeat.
org.quartz.TimeOfDay getStartTimeOfDay()
org.quartz.TimeOfDay getEndTimeOfDay()
int getTimesTriggered()
Get the number of times the DateIntervalTrigger has already
fired.
org.quartz.TriggerBuilder<DailyTimeIntervalMonthTrigger> getTriggerBuilder()
getTriggerBuilder 在接口中 org.quartz.TriggerCopyright © 2024. All rights reserved.