You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Deterministic | Defines true/false whether the sequential execution should be deterministic. When set to true, each component will be executed at least once regardless of any individual component failures. When set to false, the components will execute sequentially until any one fails. No subsequent components will be executed after the failure. | false |
710
+
| LoopCount | Specifies the number of times to repeat the execution of each child component under the sequential execution | 1 |
711
+
712
+
```json
713
+
{
714
+
"Type": "SequentialExecution",
715
+
"Parameters": {
716
+
"LoopCount": 2
717
+
},
718
+
"Components": [
719
+
{
720
+
"Type": "TestExecutor1",
721
+
"Parameters": {
722
+
"Scenario": "ScenarioA"
723
+
}
724
+
},
725
+
{
726
+
"Type": "TestExecutor2",
727
+
"Parameters": {
728
+
"Scenario": "ScenarioB"
729
+
}
730
+
}
731
+
]
732
+
},
733
+
{
734
+
"Type": "SequentialExecution",
735
+
"Parameters": {
736
+
"Deterministic": true
737
+
},
738
+
"Components": [
739
+
{
740
+
"Type": "TestExecutor3",
741
+
"Parameters": {
742
+
"Scenario": "ScenarioA"
743
+
}
744
+
},
745
+
{
746
+
"Type": "TestExecutor4",
747
+
"Parameters": {
748
+
"Scenario": "ScenarioB"
749
+
}
750
+
}
751
+
]
752
+
}
753
+
```
754
+
755
+
### ParallelLoopExecution
756
+
Executes all child components **in parallel**, and **repeats** this execution for a specified duration or minimum number of
757
+
iterations. Each component runs in its own loop, independently, until the overall duration or the minimum iteration count is
| Duration | Maximum time to run the parallel loop (hh:mm:ss format). | -1 (no limit) |
765
+
| MinimumIterations | Minimum number of times each child component should run. Set this value to 1 to ensure each component executes to completion at least once. | 0 |
0 commit comments