Package | Description |
---|---|
org.pentaho.platform.api.scheduler2 | |
org.pentaho.platform.scheduler2.quartz |
Modifier and Type | Method and Description |
---|---|
Map<IScheduleSubject,ComplexJobTrigger> |
IScheduler.getAvailabilityWindows()
Gets the scheduler availability window for all subjects for whom a window has been set
|
Modifier and Type | Method and Description |
---|---|
Integer |
IScheduler.getMinScheduleInterval(IScheduleSubject subject)
Get the minimum time that must elapse between job runs.
|
ComplexJobTrigger |
IScheduler.getSubjectAvailabilityWindow(IScheduleSubject subject)
Gets the scheduler availability window to the specified subject
|
void |
IScheduler.setMinScheduleInterval(IScheduleSubject subject,
int intervalInSeconds)
Sets the minimum time that must elapse between runs of any jobs.
|
void |
IScheduler.setSubjectAvailabilityWindow(IScheduleSubject subject,
ComplexJobTrigger window)
Sets when a particular subject is allowed to schedule jobs.
|
Modifier and Type | Method and Description |
---|---|
void |
IScheduler.setAvailabilityWindows(Map<IScheduleSubject,ComplexJobTrigger> windows)
Replaces the scheduler availability map with the provided availability map.
|
Modifier and Type | Method and Description |
---|---|
Map<IScheduleSubject,ComplexJobTrigger> |
QuartzScheduler.getAvailabilityWindows()
Gets the scheduler availability window for all subjects for whom a window has been set
|
Modifier and Type | Method and Description |
---|---|
Integer |
QuartzScheduler.getMinScheduleInterval(IScheduleSubject subject)
Get the minimum time that must elapse between job runs.
|
ComplexJobTrigger |
QuartzScheduler.getSubjectAvailabilityWindow(IScheduleSubject subject)
Gets the scheduler availability window to the specified subject
|
void |
QuartzScheduler.setMinScheduleInterval(IScheduleSubject subject,
int intervalInSeconds)
Sets the minimum time that must elapse between runs of any jobs.
|
void |
QuartzScheduler.setSubjectAvailabilityWindow(IScheduleSubject subject,
ComplexJobTrigger availability)
Sets when a particular subject is allowed to schedule jobs.
|
Modifier and Type | Method and Description |
---|---|
void |
QuartzScheduler.setAvailabilityWindows(Map<IScheduleSubject,ComplexJobTrigger> availability)
Replaces the scheduler availability map with the provided availability map.
|