Generated by
JDiff

org.springframework.scheduling.quartz Documentation Differences

This file contains all the changes in documentation in the package org.springframework.scheduling.quartz as colored differences. Deletions are shown like this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a <code> tag will cause all subsequent paragraphs to be displayed differently.

Class CronTriggerFactoryBean

A Spring FactoryBean for creating a Quartz org.quartz.CronTrigger instance, supporting bean-style usage for trigger configuration.

CronTrigger(Impl) itself is already a JavaBean but lacks sensible defaults. This class uses the Spring bean name as job name, the Quartz default group ("DEFAULT") as job group, the current time as start time, and indefinite repetition, if not specified.

This class will also register the trigger with the job name and group of a given org.quartz.JobDetail. This allows SchedulerFactoryBean to automatically register a trigger for the corresponding JobDetail, instead of registering the JobDetail separately.

NOTE: This FactoryBean works against both Quartz 1.x and Quartz 2.0/2.1, in contrast to the older CronTriggerBean class. @author Juergen Hoeller @since 3.1 @see #setName @see #setGroup @see #setStartTime setStartDelay @see #setJobName @see #setJobGroup @see #setJobDetail @see org.springframework.scheduling.quartz.SchedulerFactoryBean#setTriggers @see org.springframework.scheduling.quartz.SchedulerFactoryBean#setJobDetails @see org.springframework.scheduling.quartz.SimpleTriggerBean

Class CronTriggerFactoryBean, void setStartDelay(long)

Set the start delay in milliseconds.

The start delay is added to the current system time (when the bean starts) to control the start time of the trigger. @param startDelay the start delay, in milliseconds


Class MethodInvokingJobDetailFactoryBean, void setConcurrent(boolean)

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.


Class SimpleTriggerFactoryBean

A Spring FactoryBean for creating a Quartz org.quartz.SimpleTrigger instance, supporting bean-style usage for trigger configuration.

SimpleTrigger(Impl) itself is already a JavaBean but lacks sensible defaults. This class uses the Spring bean name as job name, the Quartz default group ("DEFAULT") as job group, the current time as start time, and indefinite repetition, if not specified.

This class will also register the trigger with the job name and group of a given org.quartz.JobDetail. This allows SchedulerFactoryBean to automatically register a trigger for the corresponding JobDetail, instead of registering the JobDetail separately.

NOTE: This FactoryBean works against both Quartz 1.x and Quartz 2.0/2.1, in contrast to the older SimpleTriggerBean class. @author Juergen Hoeller @since 3.1 @see #setName @see #setGroup @see #setStartTime setStartDelay @see #setJobName @see #setJobGroup @see #setJobDetail @see org.springframework.scheduling.quartz.SchedulerFactoryBean#setTriggers @see org.springframework.scheduling.quartz.SchedulerFactoryBean#setJobDetails @see org.springframework.scheduling.quartz.CronTriggerBean

Class SimpleTriggerFactoryBean, void setStartDelay(long)

Set the start delay in milliseconds.

The start delay is added to the current system time (when the bean starts) to control the start time of the trigger. @param startDelay the start delay, in milliseconds