Repeat Until Unit

Repeat Until Unit


Repeat Until Unit Overview

  1. Purpose:
    1. 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.
  2. 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.
  3. Use Case:
    1. Repeat sending a request until the server responds with success.
    2. Condition: response == success.
  4. Visual Representation:
    • Related Articles

    • Edit Repeat Unit

      Edit Repeat Unit
    • Edit Repeat Unit

      Edit Repeat Unit
    • Edit XSLT Unit

      Overview The XSLT Unit is an action unit in the Flow Editor/Designer that enables you to transform XML data using XSLT (Extensible Stylesheet Language Transformations) during execution. It allows complex XML transformations, mappings, and ...
    • Edit Delegate Component Unit

      Overview A Delegate Component Unit in a flow diagram represents a self-contained, reusable block of logic that performs a specific task. You can reuse it whenever needed within a larger process, much like using a pre-built piece in a puzzle. What it ...
    • Edit Delegate Automation Unit

      Overview The Delegate Automation unit in a flow diagram represents a step where the workflow performs an automated action without manual intervention. It’s designed to execute predefined tasks using scripts, bots, or automation services. What it ...