← Back to Explore

for-break-no-retry

Substep BREAK with no retry configured — BREAK exits immediately (non-accumulating)

Rundown

# BREAK Without Retry

BREAK exits the loop immediately when no iteration-level retry is configured.
BREAK is non-accumulating — the current iteration's result is not added to parent aggregation.

## 1. Process items
- FOR i IN 1 TO 3
- PASS ALL CONTINUE
- FAIL ANY STOP

### 1.1 First check
- PASS DEFER
- FAIL DEFER

Check item.

### 1.2 Second check
- PASS DEFER
- FAIL BREAK

Validate item.

## 2. Done
- PASS COMPLETE

All items processed.

Run

Initializing...

Initializing...

Step/2