|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.quartz.SchedulerMetaData
Describes the settings and capabilities of a given
instance.
Scheduler
Constructor Summary | |
SchedulerMetaData(String schedName,
String schedInst,
Class schedClass,
boolean isRemote,
boolean started,
boolean paused,
boolean shutdown,
Date startTime,
int numJobsExec,
Class jsClass,
boolean jsPersistent,
Class tpClass,
int tpSize,
String version)
|
Method Summary | |
Class |
getJobStoreClass()
Returns the class-name of the JobStore instance that is
being used by the Scheduler . |
Class |
getSchedulerClass()
Returns the class-name of the Scheduler instance. |
String |
getSchedulerInstanceId()
Returns the instance Id of the Scheduler . |
String |
getSchedulerName()
Returns the name of the Scheduler . |
String |
getSummary()
Returns a formatted (human readable) String describing all the Scheduler 's
meta-data values. |
Class |
getThreadPoolClass()
Returns the class-name of the ThreadPool instance that is
being used by the Scheduler . |
int |
getThreadPoolSize()
Returns the number of threads currently in the Scheduler 's
ThreadPool . |
String |
getVersion()
Returns the version of Quartz that is running. |
boolean |
isPaused()
Reports whether the Scheduler is paused. |
boolean |
isSchedulerRemote()
Returns whether the Scheduler is being used remotely (via
RMI). |
boolean |
isShutdown()
Reports whether the Scheduler has been shutdown. |
boolean |
isStarted()
Returns whether the scheduler has been started. |
boolean |
jobStoreSupportsPersistence()
Returns whether or not the Scheduler 'sJobStore
instance supports persistence. |
int |
numJobsExecuted()
Returns the number of jobs executed since the Scheduler
started.. |
Date |
runningSince()
Returns the Date at which the Scheduler started running. |
String |
toString()
Return a simple string representation of this object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public SchedulerMetaData(String schedName, String schedInst, Class schedClass, boolean isRemote, boolean started, boolean paused, boolean shutdown, Date startTime, int numJobsExec, Class jsClass, boolean jsPersistent, Class tpClass, int tpSize, String version)
Method Detail |
public String getSchedulerName()
Returns the name of the Scheduler
.
public String getSchedulerInstanceId()
Returns the instance Id of the Scheduler
.
public Class getSchedulerClass()
Returns the class-name of the Scheduler
instance.
public Date runningSince()
Returns the Date
at which the Scheduler started running.
public int numJobsExecuted()
Returns the number of jobs executed since the Scheduler
started..
public boolean isSchedulerRemote()
Returns whether the Scheduler
is being used remotely (via
RMI).
public boolean isStarted()
Returns whether the scheduler has been started.
Note: isStarted()
may return true
even if
isPaused()
returns true
.
public boolean isPaused()
Reports whether the Scheduler
is paused.
Note: isStarted()
may return true
even if
isPaused()
returns true
.
public boolean isShutdown()
Reports whether the Scheduler
has been shutdown.
public Class getJobStoreClass()
Returns the class-name of the JobStore
instance that is
being used by the Scheduler
.
public boolean jobStoreSupportsPersistence()
Returns whether or not the Scheduler
'sJobStore
instance supports persistence.
public Class getThreadPoolClass()
Returns the class-name of the ThreadPool
instance that is
being used by the Scheduler
.
public int getThreadPoolSize()
Returns the number of threads currently in the Scheduler
's
ThreadPool
.
public String getVersion()
Returns the version of Quartz that is running.
public String toString()
Return a simple string representation of this object.
public String getSummary() throws SchedulerException
Returns a formatted (human readable) String describing all the Scheduler
's
meta-data values.
The format of the String looks something like this:
Quartz Scheduler 'SchedulerName' with instanceId 'SchedulerInstanceId' Scheduler class: 'org.quartz.impl.StdScheduler' - running locally. Running since: '11:33am on Jul 19, 2002' Not currently paused. Number of Triggers fired: '123' Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with '8' threads Using job-store 'org.quartz.impl.JDBCJobStore' - which supports persistence.
SchedulerException
|
Quartz Enterprise Job Scheduler Project Page | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |