Skip to content

call_choreography

Represents a Choreography Task that calls another Choreography.

CLASS DESCRIPTION
CallChoreography

A Call Choreography identifies a point in the Process where a Choreography or a Choreography Task is used.

Classes

CallChoreography dataclass

CallChoreography(
    *,
    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(),
    participant_refs: list[str] = list(),
    correlation_keys: list[CorrelationKey] = list(),
    initiating_participant_ref: str,
    loop_type: ChoreographyLoopType = NONE,
    participant_associations: list[ParticipantAssociation] = list(),
    called_choreography_ref: Optional[str] = None
)

Bases: ChoreographyActivity

A Call Choreography identifies a point in the Process where a Choreography or a Choreography Task is used.

Functions