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 | 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.
|
Modifier and Type | Method and Description |
---|---|
void |
RuntimeService.closeContent(RuntimeServiceHandle handle,
ContentHandle contentHandle)
Closes the previously opened log or output content and releases
the handle.
|
byte[] |
RuntimeService.getBinaryContent(RuntimeServiceHandle handle,
ContentHandle contentHandle,
int maxBytes)
Gets at most
maxBytes bytes from the binary content. |
String[] |
RuntimeService.getLogLines(RuntimeServiceHandle handle,
ContentHandle contentHandle,
int maxLines)
Gets at most
maxLines lines from the request log,
continuing from the last call to this method. |
char[] |
RuntimeService.getTextContent(RuntimeServiceHandle handle,
ContentHandle contentHandle,
int maxChars)
Gets at most
maxChars lines from the log or output text content. |
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.
|
Modifier and Type | Method and Description |
---|---|
void |
RemoteContentHelper.closeOutputContent(ContentHandle contentHandle)
Closes the content associated with the given content handle.
|
byte[] |
RemoteContentHelper.getBinaryContent(ContentHandle contentHandle,
int maxBytes)
Gets at most
maxBytes bytes from the binary content. |
char[] |
RemoteContentHelper.getTextContent(ContentHandle contentHandle,
int maxChars)
Gets at most
maxChars characters from 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 |
RemoteContentHelper.writeln(ContentHandle contentHandle,
String data)
Appends the string followed by a line feed character to the
output content during job execution.
|