| |
|
| java.lang.Object org.springframework.util.MethodInvoker org.springframework.beans.support.ArgumentConvertingMethodInvoker org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean
Inner Class :public static class MethodInvokingJob extends QuartzJobBean | |
Inner Class :public static class StatefulMethodInvokingJob extends MethodInvokingJob implements StatefulJob | |
isSingleton | public boolean isSingleton()(Code) | | |
postProcessJobDetail | protected void postProcessJobDetail(JobDetail jobDetail)(Code) | | Callback for post-processing the JobDetail to be exposed by this FactoryBean.
The default implementation is empty. Can be overridden in subclasses.
Parameters: jobDetail - the JobDetail prepared by this FactoryBean |
setConcurrent | public void setConcurrent(boolean concurrent)(Code) | | Specify whether or not multiple jobs should be run in a concurrent
fashion. The behavior when one does not want concurrent jobs to be
executed is realized through adding the
StatefulJob interface.
More information on stateful versus stateless jobs can be found
here.
The default setting is to run jobs concurrently.
|
setGroup | public void setGroup(String group)(Code) | | Set the group of the job.
Default is the default group of the Scheduler.
See Also: org.quartz.JobDetail.setGroup See Also: org.quartz.Scheduler.DEFAULT_GROUP |
setJobListenerNames | public void setJobListenerNames(String[] names)(Code) | | Set a list of JobListener names for this job, referring to
non-global JobListeners registered with the Scheduler.
A JobListener name always refers to the name returned
by the JobListener implementation.
See Also: SchedulerFactoryBean.setJobListeners See Also: org.quartz.JobListener.getName |
setName | public void setName(String name)(Code) | | Set the name of the job.
Default is the bean name of this FactoryBean.
See Also: org.quartz.JobDetail.setName |
|
|
|