Package oracle.as.scheduler
Class JobInformation
java.lang.Object
oracle.as.scheduler.JobInformation
Contract for implementing a callout to obtain information related to
a job. It is applicable to all execution types.
A client application specifies the JobInformation class by setting the
JOB_INFO_CLASS
system property.
The specified class must provide an empty constructor.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final long
static final long
static final long
static final long
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract long
timeToRun
(long requestId, RequestParameters parameters) Invoked immediately prior to Executable.execute.
-
Field Details
-
TIME_SHORT
public static final long TIME_SHORT- See Also:
-
TIME_MEDIUM
public static final long TIME_MEDIUM- See Also:
-
TIME_LONG
public static final long TIME_LONG- See Also:
-
TIME_INFINITE
public static final long TIME_INFINITE- See Also:
-
-
Constructor Details
-
JobInformation
public JobInformation()
-
-
Method Details
-
timeToRun
Invoked immediately prior to Executable.execute. The value returned represents the approximate time in minutes the job request execution is expected to take. The result will be interpreted as the maximum reasonable time for the request to complete execution. No checked exceptions are declared. If a RuntimeException or Error occurs, it will be treated the same as though the interface is not defined.- Parameters:
requestId
- The request identifierparameters
- The request parameters associated with this request- Returns:
- the maximum time in minutes for the execution of this job request
-