Uses of Class org.quartz.JobKey (Quartz Parent POM 2.0.1 API)

Quartz Java



Uses of Class
org.quartz.JobKey

Packages that use JobKey
org.quartz The main package of Quartz, containing the client-side interfaces. 
org.quartz.core Contains the core classes and interfaces for the Quartz job scheduler. 
org.quartz.impl Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.impl.jdbcjobstore   
org.quartz.impl.matchers   
org.quartz.impl.triggers This package contains Trigger implementations that ship with Quartz. 
org.quartz.listeners   
org.quartz.locality   
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.xml   
 

Uses of JobKey in org.quartz
 

Methods in org.quartz that return JobKey
 JobKey Trigger.getJobKey()
           
 JobKey JobDetail.getKey()
           
static JobKey JobKey.jobKey(String name)
           
static JobKey JobKey.jobKey(String name, String group)
           
 

Methods in org.quartz that return types with arguments of type JobKey
 Set<JobKey> Scheduler.getJobKeys(GroupMatcher<JobKey> matcher)
          Get the keys of all the JobDetails in the matching groups.
 List<Matcher<JobKey>> ListenerManager.getJobListenerMatchers(String listenerName)
          Get the set of Matchers for which the listener will receive events if ANY of the matchers match.
 

Methods in org.quartz with parameters of type JobKey
 boolean Scheduler.checkExists(JobKey jobKey)
          Determine whether a Job with the given identifier already exists within the scheduler.
 boolean Scheduler.deleteJob(JobKey jobKey)
          Delete the identified Job from the Scheduler - and any associated Triggers.
 TriggerBuilder<T> TriggerBuilder.forJob(JobKey jobKey)
          Set the identity of the Job which should be fired by the produced Trigger.
 JobDetail Scheduler.getJobDetail(JobKey jobKey)
          Get the JobDetail for the Job instance with the given key.
 List<? extends Trigger> Scheduler.getTriggersOfJob(JobKey jobKey)
          Get all Trigger s that are associated with the identified JobDetail.
 boolean Scheduler.interrupt(JobKey jobKey)
          Request the interruption, within this Scheduler instance, of all currently executing instances of the identified Job, which must be an implementor of the InterruptableJob interface.
 void SchedulerListener.jobDeleted(JobKey jobKey)
           Called by the Scheduler when a JobDetail has been deleted.
 void SchedulerListener.jobPaused(JobKey jobKey)
           Called by the Scheduler when a JobDetail has been paused.
 void SchedulerListener.jobResumed(JobKey jobKey)
           Called by the Scheduler when a JobDetail has been un-paused.
 void Scheduler.pauseJob(JobKey jobKey)
          Pause the JobDetail with the given key - by pausing all of its current Triggers.
 void Scheduler.resumeJob(JobKey jobKey)
          Resume (un-pause) the JobDetail with the given key.
 void Scheduler.triggerJob(JobKey jobKey)
          Trigger the identified JobDetail (execute it now).
 void Scheduler.triggerJob(JobKey jobKey, JobDataMap data)
          Trigger the identified JobDetail (execute it now).
 JobBuilder JobBuilder.withIdentity(JobKey key)
          Use a JobKey to identify the JobDetail.
 

Method parameters in org.quartz with type arguments of type JobKey
 void ListenerManager.addJobListener(JobListener jobListener, List<Matcher<JobKey>> matchers)
          Add the given JobListener to the Scheduler, and register it to receive events for Jobs that are matched by ANY of the given Matchers.
 boolean ListenerManager.addJobListenerMatcher(String listenerName, Matcher<JobKey> matcher)
          Add the given Matcher to the set of matchers for which the listener will receive events if ANY of the matchers match.
 boolean Scheduler.deleteJobs(List<JobKey> jobKeys)
          Delete the identified Jobs from the Scheduler - and any associated Triggers.
 Set<JobKey> Scheduler.getJobKeys(GroupMatcher<JobKey> matcher)
          Get the keys of all the JobDetails in the matching groups.
 void Scheduler.pauseJobs(GroupMatcher<JobKey> matcher)
          Pause all of the JobDetails in the matching groups - by pausing all of their Triggers.
 boolean ListenerManager.removeJobListenerMatcher(String listenerName, Matcher<JobKey> matcher)
          Remove the given Matcher to the set of matchers for which the listener will receive events if ANY of the matchers match.
 void Scheduler.resumeJobs(GroupMatcher<JobKey> matcher)
          Resume (un-pause) all of the JobDetails in matching groups.
 boolean ListenerManager.setJobListenerMatchers(String listenerName, List<Matcher<JobKey>> matchers)
          Set the set of Matchers for which the listener will receive events if ANY of the matchers match.
 

Uses of JobKey in org.quartz.core
 

Methods in org.quartz.core that return types with arguments of type JobKey
 Set<JobKey> QuartzScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           Get the names of all the Jobs in the matching groups.
 Set<JobKey> RemotableQuartzScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           
 List<Matcher<JobKey>> ListenerManagerImpl.getJobListenerMatchers(String listenerName)
           
 

Methods in org.quartz.core with parameters of type JobKey
 boolean QuartzScheduler.checkExists(JobKey jobKey)
          Determine whether a Job with the given identifier already exists within the scheduler.
 boolean RemotableQuartzScheduler.checkExists(JobKey jobKey)
           
 boolean QuartzScheduler.deleteJob(JobKey jobKey)
           Delete the identified Job from the Scheduler - and any associated Triggers.
 boolean RemotableQuartzScheduler.deleteJob(JobKey jobKey)
           
 JobDetail QuartzScheduler.getJobDetail(JobKey jobKey)
           Get the JobDetail for the Job instance with the given name and group.
 JobDetail RemotableQuartzScheduler.getJobDetail(JobKey jobKey)
           
 List<? extends Trigger> QuartzScheduler.getTriggersOfJob(JobKey jobKey)
           Get all Trigger s that are associated with the identified JobDetail.
 List<? extends Trigger> RemotableQuartzScheduler.getTriggersOfJob(JobKey jobKey)
           
 boolean QuartzScheduler.interrupt(JobKey jobKey)
          Interrupt all instances of the identified InterruptableJob executing in this Scheduler instance.
 boolean RemotableQuartzScheduler.interrupt(JobKey jobKey)
           
 void QuartzSchedulerMBeanImpl.jobDeleted(JobKey jobKey)
           
 void QuartzSchedulerMBeanImpl.jobPaused(JobKey jobKey)
           
 void QuartzSchedulerMBeanImpl.jobResumed(JobKey jobKey)
           
 void QuartzScheduler.notifySchedulerListenersJobDeleted(JobKey jobKey)
           
 void SchedulerSignalerImpl.notifySchedulerListenersJobDeleted(JobKey jobKey)
           
 void QuartzScheduler.notifySchedulerListenersPausedJob(JobKey key)
           
 void QuartzScheduler.notifySchedulerListenersResumedJob(JobKey key)
           
 void QuartzScheduler.pauseJob(JobKey jobKey)
           Pause the JobDetail with the given name - by pausing all of its current Triggers.
 void RemotableQuartzScheduler.pauseJob(JobKey jobKey)
           
 void QuartzScheduler.resumeJob(JobKey jobKey)
           Resume (un-pause) the JobDetail with the given name.
 void RemotableQuartzScheduler.resumeJob(JobKey jobKey)
           
 void QuartzScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           Trigger the identified Job (execute it now) - with a non-volatile trigger.
 void RemotableQuartzScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           
 

Method parameters in org.quartz.core with type arguments of type JobKey
 void ListenerManagerImpl.addJobListener(JobListener jobListener, List<Matcher<JobKey>> matchers)
           
 boolean ListenerManagerImpl.addJobListenerMatcher(String listenerName, Matcher<JobKey> matcher)
           
 boolean QuartzScheduler.deleteJobs(List<JobKey> jobKeys)
           
 boolean RemotableQuartzScheduler.deleteJobs(List<JobKey> jobKeys)
           
 Set<JobKey> QuartzScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           Get the names of all the Jobs in the matching groups.
 Set<JobKey> RemotableQuartzScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           
 void QuartzScheduler.pauseJobs(GroupMatcher<JobKey> groupMatcher)
           Pause all of the JobDetails in the matching groups - by pausing all of their Triggers.
 void RemotableQuartzScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
           
 boolean ListenerManagerImpl.removeJobListenerMatcher(String listenerName, Matcher<JobKey> matcher)
           
 void QuartzScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
           Resume (un-pause) all of the JobDetails in the matching groups.
 void RemotableQuartzScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
           
 boolean ListenerManagerImpl.setJobListenerMatchers(String listenerName, List<Matcher<JobKey>> matchers)
           
 

Uses of JobKey in org.quartz.impl
 

Methods in org.quartz.impl that return JobKey
 JobKey JobDetailImpl.getKey()
           
 

Methods in org.quartz.impl that return types with arguments of type JobKey
 Set<JobKey> RemoteScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 Set<JobKey> StdScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 Set<JobKey> RemoteMBeanScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 

Methods in org.quartz.impl with parameters of type JobKey
 boolean RemoteScheduler.checkExists(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean StdScheduler.checkExists(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.checkExists(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteScheduler.deleteJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean StdScheduler.deleteJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.deleteJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 JobDetail RemoteScheduler.getJobDetail(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobDetail StdScheduler.getJobDetail(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobDetail RemoteMBeanScheduler.getJobDetail(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 List<? extends Trigger> RemoteScheduler.getTriggersOfJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 List<? extends Trigger> StdScheduler.getTriggersOfJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 List<Trigger> RemoteMBeanScheduler.getTriggersOfJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean RemoteScheduler.interrupt(JobKey jobKey)
           
 boolean StdScheduler.interrupt(JobKey jobKey)
           
 boolean RemoteMBeanScheduler.interrupt(JobKey jobKey)
           
 void RemoteScheduler.pauseJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.pauseJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.pauseJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.resumeJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.resumeJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.resumeJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void JobDetailImpl.setKey(JobKey key)
           
 void RemoteScheduler.triggerJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.triggerJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.triggerJob(JobKey jobKey)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 

Method parameters in org.quartz.impl with type arguments of type JobKey
 boolean RemoteScheduler.deleteJobs(List<JobKey> jobKeys)
           
 boolean StdScheduler.deleteJobs(List<JobKey> jobKeys)
           
 boolean RemoteMBeanScheduler.deleteJobs(List<JobKey> jobKeys)
           
 Set<JobKey> RemoteScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 Set<JobKey> StdScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 Set<JobKey> RemoteMBeanScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 

Uses of JobKey in org.quartz.impl.jdbcjobstore
 

Methods in org.quartz.impl.jdbcjobstore that return JobKey
 JobKey FiredTriggerRecord.getJobKey()
           
 JobKey TriggerStatus.getJobKey()
           
 

Methods in org.quartz.impl.jdbcjobstore that return types with arguments of type JobKey
 Set<JobKey> JobStoreSupport.getJobKeys(GroupMatcher<JobKey> matcher)
           Get the names of all of the Job s that matcher the given groupMatcher.
protected  Set<JobKey> JobStoreSupport.getJobNames(Connection conn, GroupMatcher<JobKey> matcher)
           
 Set<JobKey> StdJDBCDelegate.selectJobsInGroup(Connection conn, GroupMatcher<JobKey> matcher)
           Select all of the jobs contained in a given group.
 Set<JobKey> DriverDelegate.selectJobsInGroup(Connection conn, GroupMatcher<JobKey> matcher)
           Select all of the jobs contained in a given group.
 

Methods in org.quartz.impl.jdbcjobstore with parameters of type JobKey
protected  String JobStoreSupport.checkBlockedState(Connection conn, JobKey jobKey, String currentState)
          Determines if a Trigger for the given job should be blocked.
protected  boolean JobStoreSupport.checkExists(Connection conn, JobKey jobKey)
           
 boolean JobStoreSupport.checkExists(JobKey jobKey)
          Determine whether a Job with the given identifier already exists within the scheduler.
 int StdJDBCDelegate.deleteJobDetail(Connection conn, JobKey jobKey)
           Delete the job detail record for the given job.
 int DriverDelegate.deleteJobDetail(Connection conn, JobKey jobKey)
           Delete the job detail record for the given job.
protected  List<org.quartz.spi.OperableTrigger> JobStoreSupport.getTriggersForJob(Connection conn, JobKey key)
           
 List<org.quartz.spi.OperableTrigger> JobStoreSupport.getTriggersForJob(JobKey jobKey)
           Get all of the Triggers that are associated to the given Job.
 boolean StdJDBCDelegate.isJobNonConcurrent(Connection conn, JobKey jobKey)
           Check whether or not the given job is stateful.
 boolean DriverDelegate.isJobNonConcurrent(Connection conn, JobKey jobKey)
           Check whether or not the given job disallows concurrent execution.
 boolean StdJDBCDelegate.jobExists(Connection conn, JobKey jobKey)
           Check whether or not the given job exists.
 boolean DriverDelegate.jobExists(Connection conn, JobKey jobKey)
           Check whether or not the given job exists.
protected  boolean JobStoreSupport.jobExists(Connection conn, JobKey jobKey)
           Check existence of a given job.
 void JobStoreSupport.pauseJob(JobKey jobKey)
           Pause the Job with the given name - by pausing all of its current Triggers.
protected  boolean JobStoreSupport.removeJob(Connection conn, JobKey jobKey, boolean activeDeleteSafe)
           
 boolean JobStoreSupport.removeJob(JobKey jobKey)
           Remove (delete) the Job with the given name, and any Trigger s that reference it.
 void JobStoreSupport.resumeJob(JobKey jobKey)
           Resume (un-pause) the Job with the given name.
protected  JobDetail JobStoreSupport.retrieveJob(Connection conn, JobKey key)
           
 JobDetail JobStoreSupport.retrieveJob(JobKey jobKey)
           Retrieve the JobDetail for the given Job.
 JobDetail StdJDBCDelegate.selectJobDetail(Connection conn, JobKey jobKey, org.quartz.spi.ClassLoadHelper loadHelper)
           Select the JobDetail object for a given job name / group name.
 JobDetail DriverDelegate.selectJobDetail(Connection conn, JobKey jobKey, org.quartz.spi.ClassLoadHelper loadHelper)
           Select the JobDetail object for a given job name / group name.
 int StdJDBCDelegate.selectJobExecutionCount(Connection conn, JobKey jobKey)
           
 int DriverDelegate.selectJobExecutionCount(Connection conn, JobKey jobKey)
           Get the number instances of the identified job currently executing.
 int StdJDBCDelegate.selectNumTriggersForJob(Connection conn, JobKey jobKey)
           Select the number of triggers associated with a given job.
 int DriverDelegate.selectNumTriggersForJob(Connection conn, JobKey jobKey)
           Select the number of triggers associated with a given job.
 int DB2v6Delegate.selectNumTriggersForJob(Connection conn, JobKey jobKey)
           
 List<TriggerKey> StdJDBCDelegate.selectTriggerKeysForJob(Connection conn, JobKey jobKey)
           Get the names of all of the triggers associated with the given job.
 List<TriggerKey> DriverDelegate.selectTriggerKeysForJob(Connection conn, JobKey jobKey)
           Get the names of all of the triggers associated with the given job.
 List<org.quartz.spi.OperableTrigger> StdJDBCDelegate.selectTriggersForJob(Connection conn, JobKey jobKey)
           Select the triggers for a job
 List<org.quartz.spi.OperableTrigger> DriverDelegate.selectTriggersForJob(Connection conn, JobKey jobKey)
           Select the triggers for a job
 void FiredTriggerRecord.setJobKey(JobKey key)
           
 void TriggerStatus.setJobKey(JobKey jobKey)
           
 int StdJDBCDelegate.updateTriggerStatesForJob(Connection conn, JobKey jobKey, String state)
           Update the states of all triggers associated with the given job.
 int DriverDelegate.updateTriggerStatesForJob(Connection conn, JobKey jobKey, String state)
           Update the states of all triggers associated with the given job.
 int StdJDBCDelegate.updateTriggerStatesForJobFromOtherState(Connection conn, JobKey jobKey, String state, String oldState)
           
 int DriverDelegate.updateTriggerStatesForJobFromOtherState(Connection conn, JobKey jobKey, String state, String oldState)
           Update the states of any triggers associated with the given job, that are the given current state.
 

Method parameters in org.quartz.impl.jdbcjobstore with type arguments of type JobKey
 Set<JobKey> JobStoreSupport.getJobKeys(GroupMatcher<JobKey> matcher)
           Get the names of all of the Job s that matcher the given groupMatcher.
protected  Set<JobKey> JobStoreSupport.getJobNames(Connection conn, GroupMatcher<JobKey> matcher)
           
 Set<String> JobStoreSupport.pauseJobs(GroupMatcher<JobKey> matcher)
           Pause all of the Jobs matching the given groupMatcher - by pausing all of their Triggers.
 boolean JobStoreSupport.removeJobs(List<JobKey> jobKeys)
           
 Set<String> JobStoreSupport.resumeJobs(GroupMatcher<JobKey> matcher)
           Resume (un-pause) all of the Jobs in the given group.
 Set<JobKey> StdJDBCDelegate.selectJobsInGroup(Connection conn, GroupMatcher<JobKey> matcher)
           Select all of the jobs contained in a given group.
 Set<JobKey> DriverDelegate.selectJobsInGroup(Connection conn, GroupMatcher<JobKey> matcher)
           Select all of the jobs contained in a given group.
 

Uses of JobKey in org.quartz.impl.matchers
 

Methods in org.quartz.impl.matchers that return types with arguments of type JobKey
static EverythingMatcher<JobKey> EverythingMatcher.allJobs()
          Create an EverythingMatcher that matches all jobs.
 

Uses of JobKey in org.quartz.impl.triggers
 

Methods in org.quartz.impl.triggers that return JobKey
 JobKey AbstractTrigger.getJobKey()
           
 

Methods in org.quartz.impl.triggers with parameters of type JobKey
 void AbstractTrigger.setJobKey(JobKey key)
           
 

Uses of JobKey in org.quartz.listeners
 

Methods in org.quartz.listeners with parameters of type JobKey
 void JobChainingJobListener.addJobChainLink(JobKey firstJob, JobKey secondJob)
          Add a chain mapping - when the Job identified by the first key completes the job identified by the second key will be triggered.
 void SchedulerListenerSupport.jobDeleted(JobKey jobKey)
           
 void BroadcastSchedulerListener.jobDeleted(JobKey jobKey)
           
 void SchedulerListenerSupport.jobPaused(JobKey jobKey)
           
 void BroadcastSchedulerListener.jobPaused(JobKey key)
           
 void SchedulerListenerSupport.jobResumed(JobKey jobKey)
           
 void BroadcastSchedulerListener.jobResumed(JobKey key)
           
 

Uses of JobKey in org.quartz.locality
 

Methods in org.quartz.locality that return JobKey
 JobKey DelegatingLocalityTrigger.getJobKey()
          
 JobKey DelegatingLocalityJobDetail.getKey()
          
 

Methods in org.quartz.locality with parameters of type JobKey
 void DelegatingLocalityTrigger.setJobKey(JobKey key)
          
 

Uses of JobKey in org.quartz.simpl
 

Fields in org.quartz.simpl with type parameters of type JobKey
protected  HashSet<JobKey> RAMJobStore.blockedJobs
           
protected  HashMap<String,HashMap<JobKey,org.quartz.simpl.JobWrapper>> RAMJobStore.jobsByGroup
           
protected  HashMap<JobKey,org.quartz.simpl.JobWrapper> RAMJobStore.jobsByKey
           
 

Methods in org.quartz.simpl that return types with arguments of type JobKey
 Set<JobKey> RAMJobStore.getJobKeys(GroupMatcher<JobKey> matcher)
           Get the names of all of the Job s that match the given groupMatcher.
 

Methods in org.quartz.simpl with parameters of type JobKey
 boolean RAMJobStore.checkExists(JobKey jobKey)
          Determine whether a Job with the given identifier already exists within the scheduler.
 List<org.quartz.spi.OperableTrigger> RAMJobStore.getTriggersForJob(JobKey jobKey)
           Get all of the Triggers that are associated to the given Job.
protected  ArrayList<org.quartz.simpl.TriggerWrapper> RAMJobStore.getTriggerWrappersForJob(JobKey jobKey)
           
 void RAMJobStore.pauseJob(JobKey jobKey)
           Pause the JobDetail with the given name - by pausing all of its current Triggers.
 boolean RAMJobStore.removeJob(JobKey jobKey)
           Remove (delete) the Job with the given name, and any Trigger s that reference it.
 void RAMJobStore.resumeJob(JobKey jobKey)
           Resume (un-pause) the JobDetail with the given name.
 JobDetail RAMJobStore.retrieveJob(JobKey jobKey)
           Retrieve the JobDetail for the given Job.
protected  void RAMJobStore.setAllTriggersOfJobToState(JobKey jobKey, int state)
           
 

Method parameters in org.quartz.simpl with type arguments of type JobKey
 Set<JobKey> RAMJobStore.getJobKeys(GroupMatcher<JobKey> matcher)
           Get the names of all of the Job s that match the given groupMatcher.
 List<String> RAMJobStore.pauseJobs(GroupMatcher<JobKey> matcher)
           Pause all of the JobDetails in the given group - by pausing all of their Triggers.
 boolean RAMJobStore.removeJobs(List<JobKey> jobKeys)
           
 Collection<String> RAMJobStore.resumeJobs(GroupMatcher<JobKey> matcher)
           Resume (un-pause) all of the JobDetails in the given group.
 

Uses of JobKey in org.quartz.xml
 

Fields in org.quartz.xml with type parameters of type JobKey
protected  List<JobKey> XMLSchedulingDataProcessor.jobsToDelete
           
 



Copyright 2001-2011, Terracotta, Inc.