Package | Description |
---|---|
oracle.as.scheduler |
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
|
Modifier and Type | Method and Description |
---|---|
Schedule |
Schedule.clone(String newName) |
Schedule[] |
BaseMetadataType.ScheduleType.getArray(int size) |
Schedule |
RequestDetail.getSchedule()
The schedule instance associated with this request.
|
Schedule |
MetadataService.getScheduleDefinition(MetadataServiceHandle handle,
MetadataObjectId objectId,
boolean forUpdate)
Retrieves a Schedule from the metadata repository.
|
Schedule[] |
MetadataService.getScheduleDefinitions(MetadataServiceHandle handle,
MetadataObjectId[] objectIds,
boolean forUpdate)
Retrieves an array of Schedules from the metadata repository.
|
Modifier and Type | Method and Description |
---|---|
MetadataObjectId |
MetadataService.addScheduleDefinition(MetadataServiceHandle handle,
Schedule schedule,
String packageName)
Adds a Schedule to the metadata repository.
|
void |
RuntimeService.replaceSchedule(RuntimeServiceHandle handle,
long requestId,
MetadataObjectId scheduleId,
Schedule schedule,
Calendar start,
Calendar end)
Replace the current schedule for a request that has already been
submitted with a schedule.
|
void |
RuntimeService.replaceSchedule(RuntimeServiceHandle handle,
long requestId,
Schedule schedule)
Replace the current schedule for a request that has already been
submitted.
|
long |
RuntimeService.submitRequest(RuntimeServiceHandle handle,
String description,
JobType.ExecutionType type,
Schedule schedule,
oracle.as.scheduler.Trigger trigger,
Calendar start,
Calendar end,
RequestParameters parameters)
Adhoc job request submission using specified Schedule.
|
long |
RuntimeService.submitRequest(RuntimeServiceHandle handle,
String description,
MetadataObjectId definition,
Schedule schedule,
oracle.as.scheduler.Trigger trigger,
Calendar start,
Calendar end,
RequestParameters parameters)
Adhoc job request submission using job definition from metadata.
|
void |
MetadataService.updateScheduleDefinition(MetadataServiceHandle handle,
MetadataObjectId objectId,
Schedule schedule)
Updates an existing Schedule definition in the metadata repository.
|