Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.quartz.simpl: Javadoc index of package org.quartz.simpl.


Package Samples:

org.quartz.simpl

Classes:

SimpleTimeBroker: The interface to be implemented by classes that want to provide a mechanism by which the org.quartz.core.QuartzScheduler can reliably determine the current time. In general, the default implementation of this interface ( SimpleTimeBroker - which simply uses System.getCurrentTimeMillis() )is sufficient. However situations may exist where this default scheme is lacking in its robustsness - especially when Quartz is used in a clustered configuration. For example, if one or more of the machines in the cluster has a system time that varies by more than a few seconds from the clocks on the other systems ...
SimpleThreadPool: This is class is a simple implementation of a thread pool, based on the org.quartz.spi.ThreadPool interface. Runnable objects are sent to the pool with the runInThread(Runnable) 55 method, which blocks until a Thread becomes available. The pool has a fixed number of Thread s, and does not grow or shrink based on demand.
RAMJobStore: This class implements a org.quartz.spi.JobStore that utilizes RAM as its storage device. As you should know, the ramification of this is that access is extrememly fast, but the data is completely volatile - therefore this JobStore should not be used if true persistence between program shutdowns is required.
CascadingClassLoadHelper: A ClassLoadHelper uses all of the ClassLoadHelper types that are found in this package in its attempts to load a class, when one scheme is found to work, it is promoted to the scheme that will be used first the next time a class is loaded (in order to improve perfomance).
ThreadContextClassLoadHelper: A ClassLoadHelper that uses either the current thread's context class loader ( Thread.currentThread().getContextClassLoader().loadClass( .. ) ).
TriggerComparator: * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Helper Classes. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
InitThreadContextClassLoadHelper: A ClassLoadHelper that uses either the context class loader of the thread that initialized Quartz.
SimpleClassLoadHelper: A ClassLoadHelper that simply calls Class.forName(..) .
JobWrapper
TriggerWrapper

Home | Contact Us | Privacy Policy | Terms of Service