Overview
The Repeat Until Unit runs a set of steps repeatedly until a specific condition is met. It keeps looping while the condition is false and stops automatically when the condition becomes true.
- How it works:
- The loop starts unconditionally (it always runs at least once).
- After each iteration, it checks the condition.
- If the condition is met, the loop stops; otherwise, it repeats.
- Use Case:
- Repeat sending a request until the server responds with success.
- Condition: response == success.
- Visual Representation:
Related Articles
Edit Repeat Unit
Edit Repeat Unit
Edit Repeat Unit
Edit Repeat Unit
Edit Subscription Trigger Unit
Overview Trigger Units are responsible for starting the execution of a flow. They define how and when a flow is triggered. A flow always begins with a Start Unit, and immediately after that comes a Trigger Unit. The following trigger units are ...
Edit Queue Trigger Unit
Overview Trigger Units are responsible for starting the execution of a flow. They define how and when a flow is triggered. A flow always begins with a Start Unit, and immediately after that comes a Trigger Unit. The following trigger units are ...
Edit Timer Trigger Unit
Overview Trigger Units are responsible for starting the execution of a flow. They define how and when a flow is triggered. A flow always begins with a Start Unit, and immediately after that comes a Trigger Unit. The following trigger units are ...