Triggers
Contents
Description
GreenVulcano® ESB uses this element to define a group of Timer Tasks.
VulCon / GV Console Configuration
The Triggers Element is used by: RSHTask, ServiceCallerTask, ShellTask, LogCleanerTask (since v3.3.2) and TestTask.
Might contain the following subelements:
- Description
- SimpleTriggerBuilder or DateIntervalTriggerBuilder or CronTriggerBuilder
SimpleTriggerBuilder
A Trigger that is used to fire a Task at a given moment in time, and optionally repeated at a specified interval.
The following table shows the SimpleTriggerBuilder element's attributes:
Attribute | Type | Description |
---|---|---|
type | fixed | This attribute must assume the value cron-trigger |
class | fixed | This attribute must assume the value it.greenvulcano.scheduler.util.quartz.impl.trigger.SimpleTriggerBuilder |
name | required | Trigger name |
startTime | optional | Trigger starting time in ISO format: yyyy-MM-dd HH:mm:ss |
endTime | optional | Trigger ending time in ISO format: yyyy-MM-dd HH:mm:ss.
If not defined is the server starting time rounded to the next minute. |
repeatInterval | optional | The period of repetition of the trigger, in ms.
If not defined the task is executed only once. |
repeatCount | optional | The number of repetitions of the trigger.
If not defined the task is executed only once. If 'period' == -1, the task is repeated endlessly (or to 'endTime'). |
timeZone | optional | Trigger TimeZone.
If not defined is used the TimeZone defined for DateUtils. |
calendarName | optional | Associate the Calendar with the given name with this Trigger. |
Attribute | Type | Description |
---|---|---|
misfireMode | optional | Defines how to handle misfire situations. Default to smart-policy.
The attribute admitted values are:
|
Misfire policy:
Mode | Policy |
---|---|
smart-policy | the following scheme will be used:
|
fire-now | instructs the Scheduler that upon a mis-fire situation, the SimpleTrigger wants to be fired now. |
reschedule-now-existing-repeat-count | instructs the Scheduler that upon a mis-fire situation, the SimpleTrigger wants to be re-scheduled to 'now' (even if the associated Calendar excludes 'now') with the repeat count left as-is. |
reschedule-now-remaining-repeat-count | instructs the Scheduler that upon a mis-fire situation, the SimpleTrigger wants to be re-scheduled to 'now' (even if the associated Calendar excludes 'now') with the repeat count set to what it would be, if it had not missed any firings. |
reschedule-next-existing-count | instructs the Scheduler that upon a mis-fire situation, the SimpleTrigger wants to be re-scheduled to the next scheduled time after 'now' - taking into account any associated Calendar, and with the repeat count left unchanged. |
reschedule-next-remaining-count | instructs the Scheduler that upon a mis-fire situation, the SimpleTrigger wants to be re-scheduled to the next scheduled time after 'now' - taking into account any associated Calendar, and with the repeat count set to what it would be, if it had not missed any firings.
WARNING: using this mode with a trigger that has a non-null end-time may cause the trigger to never fire again if the end-time arrived during the misfire time span. |
Attribute | Type | Description |
---|---|---|
enabled | implied | Trigger activation status. Default to true. |
Might contain the following sub-elements:
- Description
- TgProperties
TgProperties
This element defines additional properties of the Trigger.
Might contain the following sub-elements:
- Description
- PropertyDef
DateIntervalTriggerBuilder
This element represents a Trigger that is used to fire a Task based upon repeating calendar time intervals.
The following table shows the DateIntervalTriggerBuilder element's attributes:
Attribute | Type | Description |
---|---|---|
type | fixed | This attribute must assume the value cron-trigger |
class | fixed | This attribute must assume the value it.greenvulcano.scheduler.util.quartz.impl.trigger.DateIntervalTriggerBuilder |
name | required | Trigger name. |
startTime | optional | Trigger starting time in ISO format: yyyy-MM-dd HH:mm:ss
If not defined is the server starting time rounded to the next minute. |
endTime | optional | Trigger ending time in ISO format: yyyy-MM-dd HH:mm:ss |
repeatIntervalUnit | optional | The period of repetition of the trigger, in time unit.
The attribute admitted values are:
|
repeatInterval | optional | The number of repeatIntervalUnit for repetitions of the trigger.
If not defined the default is 1. |
timeZone | optional | Trigger TimeZone.
If not defined is used the TimeZone defined for DateUtils. |
calendarName | optional | Associate the Calendar with the given name with this Trigger. |
Attribute | Type | Description |
---|---|---|
misfireMode | optional | Defines how to handle misfire situations. Default to smart-policy.
The attribute admitted values are:
|
Misfire policy:
Mode | Policy |
---|---|
smart-policy | the following scheme will be used:
|
fire-once-now | instructs the Scheduler that upon a mis-fire situation, the DateIntervalTrigger wants to be fired now. |
do-nothing | instructs the Scheduler that upon a mis-fire situation, the DateIntervalTrigger 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 Calendar), but it does not want to be fired now. |
Attribute | Type | Description |
---|---|---|
enabled | implied | Trigger activation status. Default to true. |
Might contain the following sub-elements:
- Description
- TgProperties
CronTriggerBuilder
This element represents a Trigger that is used to fire a Task at given moments in time, defined with Unix cron-like definitions.
The following table shows the CronTriggerBuilder element's attributes:
Attribute | Type | Description |
---|---|---|
type | fixed | This attribute must assume the value cron-trigger |
class | fixed | This attribute must assume the value it.greenvulcano.scheduler.util.quartz.impl.trigger.CronTriggerBuilder |
name | required | Trigger name. |
cronExpression | required | Defines a cron expression.
Reference: http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger |
startTime | optional | Trigger starting time in ISO format: yyyy-MM-dd HH:mm:ss
If not defined is the server starting time rounded to the next minute. |
endTime | optional | Trigger ending time in ISO format: yyyy-MM-dd HH:mm:ss |
timeZone | optional | Trigger TimeZone.
If not defined is used the TimeZone defined for DateUtils. |
calendarName | optional | Associate the Calendar with the given name with this Trigger. |
Attribute | Type | Description |
---|---|---|
misfireMode | optional | Defines how to handle misfire situations. Default to smart-policy.
The attribute admitted values are:
|
Misfire policy:
Mode | Policy |
---|---|
smart-policy | the following scheme will be used:
|
fire-once-now | instructs the Scheduler that upon a mis-fire situation, the CronTrigger wants to be fired now. |
do-nothing | instructs the Scheduler that upon a mis-fire situation, the CronTrigger 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 Calendar), but it does not want to be fired now. |
Attribute | Type | Description |
---|---|---|
enabled | implied | Trigger activation status. Default to true. |
Might contain the following sub-elements:
- Description
- TgProperties