Skip to content

exclusive_gateway

Represents a BPMN 2.0 exclusive gateway.

CLASS DESCRIPTION
ExclusiveGateway

A diverging Exclusive Gateway is used to create alternative paths within a Process flow.

Classes

ExclusiveGateway dataclass

ExclusiveGateway(
    *,
    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,
    default: Optional[str] = None
)

Bases: Gateway

A diverging Exclusive Gateway is used to create alternative paths within a Process flow.

ATTRIBUTE DESCRIPTION
default

The Sequence Flow that receives a token when all other Sequence Flows’ conditions evaluate to false.

TYPE: Optional[str]

Attributes

default class-attribute instance-attribute
default: Optional[str] = field(
    default=None, metadata={"type": "Attribute", "is_reference": True}
)

The Sequence Flow that receives a token when all other Sequence Flows’ conditions evaluate to false.

Functions