Schedule |
ScheduleService.createSchedule(java.lang.String name,
java.lang.String description,
Schedulable schedulable,
ScheduleTrigger trigger) |
Creates a schedule that runs the job that is specified in the schedulable at the time that is defined in the
trigger.
|
void |
ScheduleService.deleteSchedule(java.lang.String id) |
Deletes the schedule
|
java.util.Set<ScheduleDescriptor> |
ScheduleService.getAllSchedules() |
Gets all of the schedules defined in the system.
|
java.util.Set<ScheduleDescriptor> |
ScheduleService.getCurrentUserSchedules() |
Gets all of the schedules defined in the system for the current user.
|
Schedule |
ScheduleService.getSchedule(java.lang.String id) |
Gets the full client representation of a schedule for the specified identifier.
|
boolean |
ScheduleService.isWorkspaceJobScheduled(java.lang.String jobPath) |
Indicates whether any schedules for the workspace job exist.
|
void |
ScheduleService.pauseSchedule(java.lang.String id) |
Pauses the schedule.
|
void |
ScheduleService.resumeSchedule(java.lang.String id) |
Resumes the schedule
|
Schedule |
ScheduleService.updateSchedule(Schedule schedule) |
Updates the schedule
|