11 Taskbox Complete Workflow
syntax-primitives
This workflow models a taskbox with owner, description, and system parameters.
syntax-primitives
This workflow models one workflow using most available language features.
laneA { # Lane A
n1: circle label:"Start 20 Syntax Complete"
n4: rectangle label:"20 Syntax Complete step 4"
n7: circle label:"End 20 Syntax Complete"
n1.handle(bottom) -> laneB.n2.handle(top)
n4.handle(bottom) -> laneB.n5.handle(top)
}
laneB { # Lane B
n2: rectangle label:"20 Syntax Complete step 2"
n5: rectangle label:"20 Syntax Complete step 5"
n2.handle(bottom) -> laneC.n3.handle(top)
n5.handle(bottom) -> laneC.n6.handle(top)
}
laneC { # Lane C
n3: rectangle label:"20 Syntax Complete step 3"
n6: rectangle label:"20 Syntax Complete step 6"
n3.handle(right) -> laneA.n4.handle(left)
n6.handle(right) -> laneA.n7.handle(left)
}
syntax-primitives
This workflow models a taskbox with owner, description, and system parameters.
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 three lanes with cross-lane communication.