Interface ExecutableCatchEvent
-
- All Superinterfaces:
ExecutableFlowElement
- All Known Implementing Classes:
ExecutableBoundaryEvent,ExecutableCatchEventElement,ExecutableReceiveTask,ExecutableStartEvent
public interface ExecutableCatchEvent extends ExecutableFlowElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ExecutableErrorgetError()ExecutableMessagegetMessage()BiFunction<ExpressionProcessor,Long,Either<Failure,Timer>>getTimerFactory()booleanisError()booleanisMessage()default booleanisNone()booleanisTimer()default booleanshouldCloseMessageSubscriptionOnCorrelate()-
Methods inherited from interface io.zeebe.engine.processing.deployment.model.element.ExecutableFlowElement
getElementType, getFlowScope, getId
-
-
-
-
Method Detail
-
isTimer
boolean isTimer()
-
isMessage
boolean isMessage()
-
isError
boolean isError()
-
isNone
default boolean isNone()
-
getMessage
ExecutableMessage getMessage()
-
shouldCloseMessageSubscriptionOnCorrelate
default boolean shouldCloseMessageSubscriptionOnCorrelate()
-
getTimerFactory
BiFunction<ExpressionProcessor,Long,Either<Failure,Timer>> getTimerFactory()
-
getError
ExecutableError getError()
-
-