Do While
This activity executes the activity contained in its body at least once, until the specified condition evaluates to false.
Activity Parameters
The Do While activity has only one parameter and it can be provided by manually inserted values or via IN arguments or variables:
...
25-01-2016 04:19:06 | getElementFromCollection | Executing |
25-01-2016 04:19:06 | getElementFromCollection | Collection Count: 4 |
25-01-2016 04:19:06 | getElementFromCollection | Element: 192.168.0.10 |
25-01-2016 04:19:06 | getElementFromCollection | CSV String: 192.168.0.10,192.168.0.12,192.168.0.13,192.168.0.14, |
ForEach
This activity executes the activities in its body for each element found in a collection/array.
Activity Parameters
The ForEach activity properties can be provided via manually inserted values or via IN arguments or variables:
...
In this example, the Else branch has been left empty, therefore no activity will be performed against the Iterators that do not meet the condition (Iterator="191.168.0.14").
Parallel
This activity that executes all child activities simultaneously and asynchronously. It completes when all its child activities are completed or when the completion condition is met.
Activity Parameters
The Parallel activity properties can be provided via manually inserted values or via IN arguments or variables:
Parameters:
- CompletionCondition (text box editor type) (type: boolean): the optional condition that decides when the parallel activity is completed. If left blank, the activity is marked as completed when all its branches are completed.
Parallel ForEach
This activity iterates a collection of elements of the same type and executes all child activities simultaneously and asynchronously per each element. It completes when all its child activities are completed or when the completion condition is met.
Activity Parameters
The Parallel ForEach activity properties can be provided via manually inserted values or via IN arguments or variables:
Parameters:
- CompletionCondition (text box editor type) (type: boolean): the optional condition that decides when the parallel activity is completed. If left blank, the activity is marked as completed when all its branches are completed.
- TypeArgument (ComboBox type): the type of the elements in the collection/array that the activity will iterate.
- Values (text box editor type) (type: dependant on TypeArgument): the collection/array that the activity will iterate. On each iteration, the body of the ForEach activity will be executed.