Class CompoundTrigger

java.lang.Object
org.springframework.integration.util.CompoundTrigger
All Implemented Interfaces:
Trigger

public class CompoundTrigger
extends Object
implements Trigger
A Trigger that delegates the nextExecutionTime(TriggerContext) to one of two Triggers. If the override trigger is null, the primary trigger is invoked; otherwise the override trigger is invoked.
Since:
4.3
Author:
Gary Russell
  • Constructor Details

    • CompoundTrigger

      public CompoundTrigger​(Trigger primary)
      Construct a compound trigger with the supplied primary trigger.
      Parameters:
      primary - the primary trigger.
  • Method Details