05 Multiple Lanes Workflow
syntax-primitives
This workflow models three lanes with cross-lane communication.
syntax-primitives
This workflow models lanes that conceptually contain other lanes.
laneA { # Lane A
n1: circle label:"Start 06 Nested Lanes"
n4: rectangle label:"06 Nested Lanes step 4"
n1.handle(bottom) -> laneB.n2.handle(top)
n4.handle(bottom) -> laneB.n5.handle(top)
}
laneB { # Lane B
n2: rectangle label:"06 Nested Lanes step 2"
n5: circle label:"End 06 Nested Lanes"
n2.handle(bottom) -> laneC.n3.handle(top)
}
laneC { # Lane C
n3: rectangle label:"06 Nested Lanes step 3"
n3.handle(bottom) -> laneA.n4.handle(top)
}syntax-primitives
This workflow models three lanes with cross-lane communication.
syntax-primitives
This workflow models two connected nodes in a single lane showing basic flow.
syntax-primitives
This workflow models nodes with explicit top, bottom, left, and right handle connections.
syntax-primitives
This workflow models a workflow that demonstrates circle, rectangle, diamond, and taskbox shapes.
syntax-primitives
This workflow models connections with descriptive labels between nodes.
syntax-primitives
This workflow models a workflow with emoji and international characters in labels.