Enum IntermediateEventState

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CANCELED
      The intermediate event has been canceled.
      PENDING
      The intermediate event has occured but the system is not yet waiting on it.
      PROCESSED
      The intermediate event has been processed
      TIMEOUTED
      The intermediate event has been timeouted.
      TIMEOUTED_AND_PROCESSED
      The intermediate event has been timeouted and after that the event has been received and processed.
      WAITING
      The system is waiting for the intermediate event
    • Enum Constant Detail

      • WAITING

        public static final IntermediateEventState WAITING
        The system is waiting for the intermediate event
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • PENDING

        public static final IntermediateEventState PENDING
        The intermediate event has occured but the system is not yet waiting on it. Maybe the system will later process the event. Usually the system is in this state if the answer from a 3rd party system is received before the intermediate event element in a process is reached.
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • PROCESSED

        public static final IntermediateEventState PROCESSED
        The intermediate event has been processed
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • TIMEOUTED

        public static final IntermediateEventState TIMEOUTED
        The intermediate event has been timeouted. The event was not received within the timeout time
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • TIMEOUTED_AND_PROCESSED

        public static final IntermediateEventState TIMEOUTED_AND_PROCESSED
        The intermediate event has been timeouted and after that the event has been received and processed. This state is only possible if IntermediateEventTimeoutAction.NOTHING is configured.
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • CANCELED

        public static final IntermediateEventState CANCELED
        The intermediate event has been canceled. This is the case if the task this intermediate event belongs to has been destroyed
        See Also:
        ITask.destroy(), ICase.destroy()
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.