Class SimpleTriggerContext

java.lang.Object
org.springframework.scheduling.support.SimpleTriggerContext
All Implemented Interfaces:
TriggerContext

public class SimpleTriggerContext extends Object implements TriggerContext
Simple data holder implementation of the TriggerContext interface.
Since:
3.0
Author:
Juergen Hoeller
  • Constructor Details

    • SimpleTriggerContext

      public SimpleTriggerContext()
      Create a SimpleTriggerContext with all time values set to null, exposing the system clock for the default time zone.
    • SimpleTriggerContext

      @Deprecated(since="6.0") public SimpleTriggerContext(@Nullable Date lastScheduledExecutionTime, @Nullable Date lastActualExecutionTime, @Nullable Date lastCompletionTime)
      Deprecated.
      Create a SimpleTriggerContext with the given time values, exposing the system clock for the default time zone.
      Parameters:
      lastScheduledExecutionTime - last scheduled execution time
      lastActualExecutionTime - last actual execution time
      lastCompletionTime - last completion time
    • SimpleTriggerContext

      public SimpleTriggerContext(@Nullable Instant lastScheduledExecution, @Nullable Instant lastActualExecution, @Nullable Instant lastCompletion)
      Create a SimpleTriggerContext with the given time values, exposing the system clock for the default time zone.
      Parameters:
      lastScheduledExecution - last scheduled execution time
      lastActualExecution - last actual execution time
      lastCompletion - last completion time
    • SimpleTriggerContext

      public SimpleTriggerContext(Clock clock)
      Create a SimpleTriggerContext with all time values set to null, exposing the given clock.
      Parameters:
      clock - the clock to use for trigger calculation
      Since:
      5.3
      See Also:
  • Method Details