public class ScheduledJobStartup extends JobStartup
ImmediateJobStartup
Modifier and Type | Field and Description |
---|---|
java.util.Date |
scheduledAt
Start execution at this time.
|
PARAMETER_ASYNC, PARAMETER_SESSION_ID, PARAMETER_START_TIME, PARAMETER_TIMEOUT_MILLIS
Constructor and Description |
---|
ScheduledJobStartup(java.util.Date scheduledAt)
Construct an object with specific scheduled time.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,java.lang.String> |
getRequestParameterMap()
Returns a list of name/value pairs to be passed to the server as part of URL query string.
|
boolean |
isSynchronous()
Specifies whether the job is synchronous.
|
public ScheduledJobStartup(java.util.Date scheduledAt)
scheduledAt
- The time at which to start execution.public boolean isSynchronous()
isSynchronous
in class JobStartup
true
if the scheduled job is to run synchronously; otherwise false
.
The default is false
.public java.util.Map<java.lang.String,java.lang.String> getRequestParameterMap()
getRequestParameterMap
in class JobStartup