📄️ Atom
This activity is used to execute an atomic step, like send an email, set a counter etc. It's the most basic activity.
📄️ Break
This activity is used to break the execution of the loop activity.
📄️ Container
The container activity is used to execute a step with a subsequence of steps (SequentialStep).
📄️ Fork
This activity is used to fork the execution of the workflow. You can use it to realize a condition statement or a switch statement.
📄️ Interruption
This activity is used to interrupt the execution of the workflow.
📄️ Loop
This activity is used to execute a step with a subsequence of steps (SequentialStep) in a loop. You can create a while, do-while, for or foreach loop by this activity.
📄️ Parallel
The parallel activity is used to execute multiple activities in parallel. You can select the branches to execute based on the workflow state.