Package | Description |
---|---|
oracle.as.scheduler |
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
|
oracle.as.scheduler.request |
Request Log and Output Content API.
|
Modifier and Type | Class and Description |
---|---|
class |
MetadataNotFoundException
Exception used to indicate a metadata object is not found.
|
class |
RequestNotFoundException
Exception that indicates the request is not found in the system.
|
Modifier and Type | Method and Description |
---|---|
ContentHandle |
RuntimeService.openLogContent(RuntimeServiceHandle handle,
long requestId)
Opens the request log to retrieve the log data.
|
ContentHandle |
RuntimeService.openOutputContent(RuntimeServiceHandle handle,
long requestId,
String contentName)
Opens the specified request output to retrieve the output data.
|
ContentHandle |
RuntimeService.openOutputContent(RuntimeServiceHandle handle,
RequestExecutionContext context,
String contentName,
ContentType contentType,
EnumSet options)
Opens the named request output during job execution.
|
void |
RuntimeService.writeContent(ContentHandle contentHandle,
byte[] bytes)
Appends the bytes to the output content during job execution.
|
void |
RuntimeService.writeContent(ContentHandle contentHandle,
char[] chars)
Appends the characters to the output content during job execution.
|
void |
RuntimeService.writeContent(ContentHandle contentHandle,
String message)
Appends the string to the output content during job execution.
|
void |
RuntimeService.writelnContent(ContentHandle contentHandle,
String message)
Appends the string followed by a line feed character to the
output content during job execution.
|
Modifier and Type | Method and Description |
---|---|
ContentHandle |
RemoteContentHelper.openOutputContent(RuntimeServiceHandle runtimeHandle,
String contentName,
ContentType contentType,
EnumSet options)
Opens output content for read or write.
|
void |
RequestOutput.write(byte[] bytes)
Appends the bytes to the binary output content.
|
void |
RequestOutput.write(byte[] bytes,
int offset,
int length)
Appends the bytes to the binary output content.
|
void |
RequestOutput.write(char[] chars)
Appends the characters to the text output content.
|
void |
RequestOutput.write(char[] chars,
int offset,
int length)
Appends the charactes to the text output content.
|
void |
RemoteContentHelper.write(ContentHandle contentHandle,
byte[] data)
Appends the bytes to the output content during job execution.
|
void |
RemoteContentHelper.write(ContentHandle contentHandle,
char[] data)
Appends the characters to the output content during job execution.
|
void |
RemoteContentHelper.write(ContentHandle contentHandle,
String data)
Appends the string to the output content during job execution.
|
void |
RequestOutput.write(String str)
Appends the String to the text output content.
|
void |
RequestOutput.write(String str,
int offset,
int length)
Appends the String to the text output content.
|
void |
RemoteContentHelper.writeln(ContentHandle contentHandle,
String data)
Appends the string followed by a line feed character to the
output content during job execution.
|
void |
RequestOutput.writeln(String str)
Appends the String to the text output content, followed by a
line feed character.
|