|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.quartz.jobs.NativeJob
Field Summary | |
static String |
PROP_COMMAND
Required parameter that specifies the name of the command (executable) to be ran. |
static String |
PROP_CONSUME_STREAMS
Optional parameter (value should be 'true' or 'false') that specifies whether the spawned process's stdout and stderr streams should be consumed. |
static String |
PROP_PARAMETERS
Optional parameter that specifies the parameters to be passed to the executed command. |
static String |
PROP_WAIT_FOR_PROCESS
Optional parameter (value should be 'true' or 'false') that specifies whether the job should wait for the execution of the native process to complete before it completes. |
Constructor Summary | |
NativeJob()
|
Method Summary | |
void |
execute(JobExecutionContext context)
Called by the when a
fires that is associated with the Job . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final String PROP_COMMAND
public static final String PROP_PARAMETERS
public static final String PROP_WAIT_FOR_PROCESS
Defaults to true
.
public static final String PROP_CONSUME_STREAMS
Defaults to false
.
Constructor Detail |
public NativeJob()
Method Detail |
public void execute(JobExecutionContext context) throws JobExecutionException
Job
Called by the
when a Scheduler
fires that is associated with the Trigger
Job
.
The implementation may wish to set a
result
object on the
JobExecutionContext
before this method exits. The result itself
is meaningless to Quartz, but may be informative to
or
JobListener
s
that are watching the job's
execution.
TriggerListener
s
execute
in interface Job
JobExecutionException
- if there is an exception while executing the job.
|
Quartz Enterprise Job Scheduler Project Page | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |