Skip to content

event_based_gateway

Definitions for the bpmn:eventBasedGateway XML element.

CLASS DESCRIPTION
EventBasedGateway

The Event-Based Gateway represents a branching point in the Process based on Events that occur.

Classes

EventBasedGateway dataclass

EventBasedGateway(
    *,
    id: Optional[str] = None,
    documentation: list[Documentation] = list(),
    extension_elements: Optional[ExtensionElements] = None,
    auditing: Optional[Auditing] = None,
    monitoring: Optional[Monitoring] = None,
    category_value_refs: list[str] = list(),
    name: Optional[str] = None,
    incoming: list[str] = list(),
    outgoing: list[str] = list(),
    gateway_direction: GatewayDirection = UNSPECIFIED,
    instantiate: bool = False,
    event_gateway_type: EventBasedGatewayType = EXCLUSIVE
)

Bases: Gateway

The Event-Based Gateway represents a branching point in the Process based on Events that occur.

Functions