Activities
Flowchart
The Flowchart activity is used to create workflows that define and manage complex flow controls.
...
Our example is a workflow that creates an Active Directory user. The Flowchart activity has been used as the root activity. Some of the nodes in the exmple flowchart will be covered later in the documentation.
FlowDecision
The FlowDecision node is a conditional node that provides a branch for the flow of control into one of two alternatives based on whether a specified condition is satisfied.
...
Our example checks whether the username provided as InArgument (the username we are trying to create) exists and assigns a value to a boolean variable (UserExist).
The FlowDecision then evaluates the condition "UserExists=true", and if it exists it disconnects from the ActiveDirectory, otherwise attempting to create a new user.
FlowSwitch
The FlowSwitch activity is a conditional node that provides branching for the flow of control based on match criterion when more than two alternative branches are required. If the flow branching requires only two paths, use the FlowDecision activity instead.
...