Repeat Until Unit

Repeat Until Unit


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:
  1. The loop starts unconditionally (it always runs at least once).
  2. After each iteration, it checks the condition.
  3. If the condition is met, the loop stops; otherwise, it repeats.
Use Case:
  1. Keep resending the request until the server responds with success.
  2. Condition: response == success.
Visual Representation


    • Related Articles

    • Edit Repeat Unit

      Edit Repeat Unit
    • Edit Repeat Unit

      Edit Repeat Unit
    • Edit FTP Call Unit

      Overview The FTP Call Unit is an action unit in the Flow Editor/Designer that enables a flow to connect to an FTP/SFTP server to perform file-based operations during execution. This unit allows automation flows to securely transfer, retrieve, or ...
    • Edit HTTP Call Unit

      Overview An HTTP Call Unit in a flow diagram is used to make HTTP requests to external services or APIs within your workflow. It’s a way to integrate your process with web-based systems. What it does: Sends an HTTP request (GET, POST, PUT, DELETE, ...
    • Edit Database Unit (Store Operations)

      Overview A Database Unit in a flow diagram interacts with a database as part of the workflow. It allows the process to perform structured operations such as reading, writing, updating, or deleting data. What it does: Connects to a database system ...