← Back to Explore

for-retry-defer

Normal DEFER + RETRY — retry fires, then DEFER accumulates

Rundown

# DEFER + Iteration RETRY

Normal DEFER flow with iteration-level retry. Retry re-runs the iteration, then DEFER accumulates.

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

### 1.1 Check
- PASS DEFER
- FAIL DEFER

Check item.

## 2. Done
- PASS COMPLETE

All items processed.

Run

Initializing...

Initializing...

Step/2