Enum Class IntermediateEventTimeoutAction

java.lang.Object
java.lang.Enum<IntermediateEventTimeoutAction>
ch.ivyteam.ivy.workflow.IntermediateEventTimeoutAction
All Implemented Interfaces:
Serializable, Comparable<IntermediateEventTimeoutAction>, java.lang.constant.Constable

public enum IntermediateEventTimeoutAction extends Enum<IntermediateEventTimeoutAction>
Defines the action that should happen if a intermediate event timeouts. IMPORTANT: DO NOT RENAME THE KEYS, THEY ARE USED AS PROPERTY KEYS IN THE ELEMENT INSCRIPTION.
API:
This is a public API.
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Continues the task that is waiting for the event without receiving the event
    Deletes the task that is waiting for the event
    Do nothing (e.g.
  • Enum Constant Details

    • NOTHING

      public static final IntermediateEventTimeoutAction NOTHING
      Do nothing (e.g. continue waiting on the event)
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • DESTROY_TASK

      public static final IntermediateEventTimeoutAction DESTROY_TASK
      Deletes the task that is waiting for the event
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • CONTINUE_WITHOUT_EVENT

      public static final IntermediateEventTimeoutAction CONTINUE_WITHOUT_EVENT
      Continues the task that is waiting for the event without receiving the event
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.