public class QuartzServer extends SchedulerListenerSupport
Instantiates an instance of Quartz Scheduler as a stand-alone program, if the scheduler is configured for RMI it will be made available.
The main() method of this class currently accepts 0 or 1 arguemtns, if there
is an argument, and its value is "console"
, then the program
will print a short message on the console (std-out) and wait for the user to
type "exit" - at which time the scheduler will be shutdown.
Future versions of this server should allow additional configuration for
responding to scheduler events by allowing the user to specify
,
JobListener
and TriggerListener
classes.
SchedulerListener
Please read the Quartz FAQ entries about RMI before asking questions in the forums or mail-lists.
Modifier and Type | Method and Description |
---|---|
static void |
main(String[] args) |
void |
schedulerError(String msg,
SchedulerException cause)
Called by the
when a serious error has
occured within the scheduler - such as repeated failures in the JobStore ,
or the inability to instantiate a Job instance when its
Trigger has fired. |
void |
schedulerShutdown()
Called by the
to inform the listener
that it has shutdown. |
void |
serve(SchedulerFactory schedFact,
boolean console) |
getLog, jobAdded, jobDeleted, jobPaused, jobResumed, jobScheduled, jobsPaused, jobsResumed, jobUnscheduled, schedulerInStandbyMode, schedulerShuttingdown, schedulerStarted, schedulerStarting, schedulingDataCleared, triggerFinalized, triggerPaused, triggerResumed, triggersPaused, triggersResumed
public void serve(SchedulerFactory schedFact, boolean console) throws Exception
Exception
public void schedulerError(String msg, SchedulerException cause)
Called by the
when a serious error has
occured within the scheduler - such as repeated failures in the Scheduler
JobStore
,
or the inability to instantiate a Job
instance when its
Trigger
has fired.
The getErrorCode()
method of the given SchedulerException
can be used to determine more specific information about the type of
error that was encountered.
schedulerError
in interface SchedulerListener
schedulerError
in class SchedulerListenerSupport
public void schedulerShutdown()
Called by the
to inform the listener
that it has shutdown.
Scheduler
schedulerShutdown
in interface SchedulerListener
schedulerShutdown
in class SchedulerListenerSupport
Copyright 2001-2019, Terracotta, Inc.