Defines schedules for
scheduled asynchronous methods
.
For the scheduled asychronous method to aim to run at a given day and time,
all of the criteria specified by the Schedule
must match
or be disregarded according to the rules of each field.
- Since:
- 3.1
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionCron expression following the rules ofCronTrigger
.int[]
Days of the month on which the asynchronous method aims to run.Days of the week on which the asynchronous method aims to run.int[]
Hours of the day at which the asynchronous method aims to run.int[]
Minutes at which the asynchronous method aims to run.Month[]
Months in which the asynchronous method aims to run.int[]
Seconds at which the asynchronous method aims to run.long
Seconds after which an execution that is late to start should be skipped rather than starting it late.Time zone id, such asAmerica/Chicago
orAmerica/Los_Angeles
, which identifies the time zone of the schedule.
-
Element Details
-
cron
String cronCron expression following the rules of
CronTrigger
.When a non-empty value is specified, it overrides all values that are specified for
months()
,daysOfMonth()
,daysOfWeek()
,hours()
,minutes()
, andseconds()
.The default value is the empty string, indicating that no cron expression is to be used.
- Returns:
- cron expression indicating when to run the asynchronous method.
- Default:
- ""
-
months
Month[] monthsMonths in which the asynchronous method aims to run.
The default value is an empty list, which means that the month is not included in the criteria for deciding when to run the asynchronous method.
- Returns:
- list of months in which the asynchronous method aims to run; An empty list disregards the month.
- Default:
- {}
-
daysOfMonth
int[] daysOfMonthDays of the month on which the asynchronous method aims to run. Values can range from 1 to 31.
The default value is an empty list, which means that the day of the month is not included in the criteria for deciding when to run the asynchronous method.
- Returns:
- list of days of the month on which the asynchronous method aims to run; An empty list disregards the day of the month.
- Default:
- {}
-
daysOfWeek
DayOfWeek[] daysOfWeekDays of the week on which the asynchronous method aims to run.
The default value is an empty list, which means that the day of the week is not included in the criteria for deciding when to run the asynchronous method.
- Returns:
- list of days of the week on which the asynchronous method aims to run; An empty list disregards the day of the week.
- Default:
- {}
-
hours
int[] hoursHours of the day at which the asynchronous method aims to run.
Values can range from 0 to 23. A value of empty list indicates that the hour is not included in the criteria for deciding when to run the asynchronous method.
The default value is 0 (midnight).
- Returns:
- list of hours at which the asynchronous method aims to run; An empty list disregards the hour.
- Default:
- {0}
-
minutes
int[] minutesMinutes at which the asynchronous method aims to run.
Values can range from 0 to 59. A value of empty list indicates that the minute is not included in the criteria for deciding when to run the asynchronous method.
The default value is 0 (at the start of the hour).
- Returns:
- list of minutes at which the asynchronous method aims to run; An empty list disregards the minutes.
- Default:
- {0}
-
seconds
int[] secondsSeconds at which the asynchronous method aims to run.
Values can range from 0 to 59. A value of empty list causes the asynchronous method to raise
IllegalArgumentException
.The default value is 0 (at the start of the minute).
- Returns:
- list of seconds at which the asynchronous method aims to run.
- Default:
- {0}
-
skipIfLateBy
long skipIfLateBySeconds after which an execution that is late to start should be skipped rather than starting it late.
Values must be greater than 0. The default value is 600 seconds (10 minutes). This differs from executions that are missed due to overlap, which are always skipped.
- Returns:
- the threshold for skipping executions that are late to start.
- Default:
- 600L
-
zone
String zoneTime zone id, such as
America/Chicago
orAmerica/Los_Angeles
, which identifies the time zone of the schedule.The default value of empty string indicates to use the
default time zone
for the system.- Default:
- ""
-