Package org.springframework.scheduling
Interface Trigger
- All Known Implementing Classes:
- CronTrigger,- PeriodicTrigger
public interface Trigger
Common interface for trigger objects that determine the next execution time
 of a task that they get associated with.
- Since:
- 3.0
- Author:
- Juergen Hoeller
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionnextExecution(TriggerContext triggerContext) Determine the next execution time according to the given trigger context.default DatenextExecutionTime(TriggerContext triggerContext) Deprecated.
- 
Method Details- 
nextExecutionTimeDeprecated.as of 6.0, in favor ofnextExecution(TriggerContext)Determine the next execution time according to the given trigger context.The default implementation delegates to nextExecution(TriggerContext).- Parameters:
- triggerContext- context object encapsulating last execution times and last completion time
- Returns:
- the next execution time as defined by the trigger,
 or nullif the trigger won't fire anymore
 
- 
nextExecutionDetermine the next execution time according to the given trigger context.- Parameters:
- triggerContext- context object encapsulating last execution times and last completion time
- Returns:
- the next execution time as defined by the trigger,
 or nullif the trigger won't fire anymore
- Since:
- 6.0
 
 
- 
nextExecution(TriggerContext)