Uses of Interface
org.quartz.spi.ClassLoadHelper

Packages that use ClassLoadHelper
org.quartz.impl.jdbcjobstore   
org.quartz.plugins.history   
org.quartz.plugins.management   
org.quartz.plugins.xml   
org.quartz.simpl Contains simple / light-weight implementations (with no dependencies on external libraries) of interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.spi Contains Service Provider Interfaces that can be implemented by those wishing to create and use custom versions of Quartz back-end/behind-the-scenes services. 
org.quartz.xml   
org.terracotta.quartz   
 

Uses of ClassLoadHelper in org.quartz.impl.jdbcjobstore
 

Fields in org.quartz.impl.jdbcjobstore declared as ClassLoadHelper
protected  ClassLoadHelper StdJDBCDelegate.classLoadHelper
           
 

Methods in org.quartz.impl.jdbcjobstore that return ClassLoadHelper
protected  ClassLoadHelper JobStoreSupport.getClassLoadHelper()
           
 

Methods in org.quartz.impl.jdbcjobstore with parameters of type ClassLoadHelper
 void JobStoreTX.initialize(ClassLoadHelper classLoadHelper, SchedulerSignaler schedSignaler)
           
 void JobStoreSupport.initialize(ClassLoadHelper loadHelper, SchedulerSignaler signaler)
           Called by the QuartzScheduler before the JobStore is used, in order to give it a chance to initialize.
 void JobStoreCMT.initialize(ClassLoadHelper loadHelper, SchedulerSignaler signaler)
           
 void StdJDBCDelegate.initialize(org.slf4j.Logger logger, String tablePrefix, String schedName, String instanceId, ClassLoadHelper classLoadHelper, boolean useProperties, String initString)
           
 void DriverDelegate.initialize(org.slf4j.Logger logger, String tablePrefix, String schedName, String instanceId, ClassLoadHelper classLoadHelper, boolean useProperties, String initString)
           
 JobDetail StdJDBCDelegate.selectJobDetail(Connection conn, JobKey jobKey, ClassLoadHelper loadHelper)
           Select the JobDetail object for a given job name / group name.
 JobDetail DriverDelegate.selectJobDetail(Connection conn, JobKey jobKey, ClassLoadHelper loadHelper)
           Select the JobDetail object for a given job name / group name.
 JobDetail StdJDBCDelegate.selectJobForTrigger(Connection conn, ClassLoadHelper loadHelper, TriggerKey triggerKey)
           Select the job to which the trigger is associated.
 JobDetail DriverDelegate.selectJobForTrigger(Connection conn, ClassLoadHelper loadHelper, TriggerKey triggerKey)
           Select the job to which the trigger is associated.
 JobDetail StdJDBCDelegate.selectJobForTrigger(Connection conn, ClassLoadHelper loadHelper, TriggerKey triggerKey, boolean loadJobClass)
           Select the job to which the trigger is associated.
 JobDetail DriverDelegate.selectJobForTrigger(Connection conn, ClassLoadHelper loadHelper, TriggerKey triggerKey, boolean loadJobClass)
           Select the job to which the trigger is associated.
 

Uses of ClassLoadHelper in org.quartz.plugins.history
 

Methods in org.quartz.plugins.history with parameters of type ClassLoadHelper
 void LoggingTriggerHistoryPlugin.initialize(String pname, Scheduler scheduler, ClassLoadHelper classLoadHelper)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 void LoggingJobHistoryPlugin.initialize(String pname, Scheduler scheduler, ClassLoadHelper classLoadHelper)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of ClassLoadHelper in org.quartz.plugins.management
 

Methods in org.quartz.plugins.management with parameters of type ClassLoadHelper
 void ShutdownHookPlugin.initialize(String name, Scheduler scheduler, ClassLoadHelper classLoadHelper)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of ClassLoadHelper in org.quartz.plugins.xml
 

Fields in org.quartz.plugins.xml declared as ClassLoadHelper
protected  ClassLoadHelper XMLSchedulingDataProcessorPlugin.classLoadHelper
           
 

Methods in org.quartz.plugins.xml with parameters of type ClassLoadHelper
 void XMLSchedulingDataProcessorPlugin.initialize(String name, Scheduler scheduler, ClassLoadHelper schedulerFactoryClassLoadHelper)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of ClassLoadHelper in org.quartz.simpl
 

Classes in org.quartz.simpl that implement ClassLoadHelper
 class 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 performance).
 class InitThreadContextClassLoadHelper
          A ClassLoadHelper that uses either the context class loader of the thread that initialized Quartz.
 class LoadingLoaderClassLoadHelper
          A ClassLoadHelper that uses either the loader of it's own class (this.getClass().getClassLoader().loadClass( ..
 class SimpleClassLoadHelper
          A ClassLoadHelper that simply calls Class.forName(..).
 class ThreadContextClassLoadHelper
          A ClassLoadHelper that uses either the current thread's context class loader (Thread.currentThread().getContextClassLoader().loadClass( ..
 

Methods in org.quartz.simpl with parameters of type ClassLoadHelper
 void RAMJobStore.initialize(ClassLoadHelper loadHelper, SchedulerSignaler schedSignaler)
           Called by the QuartzScheduler before the JobStore is used, in order to give the it a chance to initialize.
 

Uses of ClassLoadHelper in org.quartz.spi
 

Methods in org.quartz.spi with parameters of type ClassLoadHelper
 void JobStore.initialize(ClassLoadHelper loadHelper, SchedulerSignaler signaler)
          Called by the QuartzScheduler before the JobStore is used, in order to give the it a chance to initialize.
 void SchedulerPlugin.initialize(String name, Scheduler scheduler, ClassLoadHelper loadHelper)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of ClassLoadHelper in org.quartz.xml
 

Fields in org.quartz.xml declared as ClassLoadHelper
protected  ClassLoadHelper XMLSchedulingDataProcessor.classLoadHelper
           
 

Constructors in org.quartz.xml with parameters of type ClassLoadHelper
XMLSchedulingDataProcessor(ClassLoadHelper clh)
          Constructor for JobSchedulingDataLoader.
 

Uses of ClassLoadHelper in org.terracotta.quartz
 

Methods in org.terracotta.quartz with parameters of type ClassLoadHelper
 void PlainTerracottaJobStore.initialize(ClassLoadHelper loadHelper, SchedulerSignaler signaler)
           
 void AbstractTerracottaJobStore.initialize(ClassLoadHelper loadHelper, SchedulerSignaler signaler)
           
 



Copyright 2001-2019, Terracotta, Inc.