Uses of Class
oracle.as.scheduler.request.ContentHandle
Packages that use ContentHandle
Package
Description
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
Request Log and Output Content API.
-
Uses of ContentHandle in oracle.as.scheduler
Methods in oracle.as.scheduler that return ContentHandleModifier and TypeMethodDescriptionRuntimeService.openLogContent
(RuntimeServiceHandle handle, long requestId) Opens the request log to retrieve the log data.RuntimeService.openOutputContent
(RuntimeServiceHandle handle, long requestId, String contentName) Opens the specified request output to retrieve the output data.RuntimeService.openOutputContent
(RuntimeServiceHandle handle, RequestExecutionContext context, String contentName, ContentType contentType, EnumSet<ContentHandle.ContentOpenOptions> options) Opens the named request output during job execution.Methods in oracle.as.scheduler with parameters of type ContentHandleModifier and TypeMethodDescriptionvoid
RuntimeService.closeContent
(RuntimeServiceHandle handle, ContentHandle contentHandle) Closes the previously opened log or output content and releases the handle.boolean
RuntimeService.copyBinaryContentToFile
(RuntimeServiceHandle rsh, ContentHandle handle, File file, boolean lockRow) Copy binary content of the given request to file.boolean
RuntimeService.copyTextContentToFile
(RuntimeServiceHandle handle, ContentHandle contentHandle, File file, boolean lockRow) Copy log or output text content of the given request to file.byte[]
RuntimeService.getBinaryContent
(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxBytes) Gets at mostmaxBytes
bytes from the binary content.byte[]
RuntimeService.getBinaryContent
(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxBytes, boolean lockRow) Gets at mostmaxBytes
bytes from the binary content.RuntimeService.getBinaryContentLob
(RuntimeServiceHandle handle, ContentHandle contentHandle) Gets the binary content.String[]
RuntimeService.getLogLines
(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxLines) Gets at mostmaxLines
lines from the request log, continuing from the last call to this method.char[]
RuntimeService.getTextContent
(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxChars) Gets at mostmaxChars
lines from the log or output text content.char[]
RuntimeService.getTextContent
(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxChars, boolean lockRow) Gets at mostmaxChars
lines from the log or output text content.RuntimeService.getTextContentLob
(RuntimeServiceHandle handle, ContentHandle contentHandle) Gets 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. -
Uses of ContentHandle in oracle.as.scheduler.request
Methods in oracle.as.scheduler.request that return ContentHandleModifier and TypeMethodDescriptionRemoteContentHelper.openOutputContent
(RuntimeServiceHandle runtimeHandle, String contentName, ContentType contentType, EnumSet<ContentHandle.ContentOpenOptions> options) Opens output content for read or write.Methods in oracle.as.scheduler.request with parameters of type ContentHandleModifier and TypeMethodDescriptionvoid
RemoteContentHelper.closeOutputContent
(ContentHandle contentHandle) Closes the content associated with the given content handle.boolean
RemoteContentHelper.copyBinaryContentToFile
(ContentHandle contentHandle, File file, boolean lockRow) Copy binary content of the given request to file.boolean
RemoteContentHelper.copyTextContentToFile
(ContentHandle contentHandle, File file, boolean lockRow) Copy log or output text content of the given request to file.byte[]
RemoteContentHelper.getBinaryContent
(ContentHandle contentHandle, int maxBytes) Gets at mostmaxBytes
bytes from the binary content.byte[]
RemoteContentHelper.getBinaryContent
(ContentHandle contentHandle, int maxBytes, boolean lockRow) Gets at mostmaxBytes
bytes from the binary content.RemoteContentHelper.getBinaryContentLob
(ContentHandle contentHandle) Gets the binary content.char[]
RemoteContentHelper.getTextContent
(ContentHandle contentHandle, int maxChars) Gets at mostmaxChars
characters from the text output content.char[]
RemoteContentHelper.getTextContent
(ContentHandle contentHandle, int maxChars, boolean lockRow) Gets at mostmaxChars
characters from the text output content.RemoteContentHelper.getTextContentLob
(ContentHandle contentHandle) Gets 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.