Class ExecutableEventBasedGateway
java.lang.Object
io.camunda.zeebe.engine.processing.deployment.model.element.AbstractFlowElement
io.camunda.zeebe.engine.processing.deployment.model.element.ExecutableFlowNode
io.camunda.zeebe.engine.processing.deployment.model.element.ExecutableEventBasedGateway
- All Implemented Interfaces:
ExecutableCatchEventSupplier
,ExecutableFlowElement
public class ExecutableEventBasedGateway
extends ExecutableFlowNode
implements ExecutableCatchEventSupplier
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCollection
<org.agrona.DirectBuffer> Returns the ids of the boundary events.Collection
<org.agrona.DirectBuffer> Returns the ids of the containing elements that interrupt the event scope (e.g. interrupting event subprocesses).void
setEvents
(List<ExecutableCatchEvent> events) Methods inherited from class io.camunda.zeebe.engine.processing.deployment.model.element.ExecutableFlowNode
addIncoming, addListener, addOutgoing, getEndExecutionListeners, getIncoming, getInputMappings, getOutgoing, getOutputMappings, getStartExecutionListeners, hasExecutionListeners, setInputMappings, setOutputMappings
Methods inherited from class io.camunda.zeebe.engine.processing.deployment.model.element.AbstractFlowElement
getElementType, getEventType, getFlowScope, getId, setElementType, setEventType, setFlowScope
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.camunda.zeebe.engine.processing.deployment.model.element.ExecutableFlowElement
getElementType, getEventType, getFlowScope, getId
-
Constructor Details
-
ExecutableEventBasedGateway
-
-
Method Details
-
getEvents
- Specified by:
getEvents
in interfaceExecutableCatchEventSupplier
-
setEvents
-
getInterruptingElementIds
Description copied from interface:ExecutableCatchEventSupplier
Returns the ids of the containing elements that interrupt the event scope (e.g. interrupting event subprocesses). An interrupted event scope can not be triggered by other interrupting or non-interrupting events. But the event scope can still be triggered by boundary events.- Specified by:
getInterruptingElementIds
in interfaceExecutableCatchEventSupplier
-
getBoundaryElementIds
Description copied from interface:ExecutableCatchEventSupplier
Returns the ids of the boundary events. An interrupting boundary event must return its id also withExecutableCatchEventSupplier.getInterruptingElementIds()
. Otherwise, it is handled as non-interrupting boundary event.- Specified by:
getBoundaryElementIds
in interfaceExecutableCatchEventSupplier
-