Expand description
Per-proxy circuit breaker.
State machine:
CLOSED ──(failures ≥ threshold)──► OPEN
▲ │
│ (elapsed > half_open_after)
│ ▼
(success) HALF_OPEN
└──────────────────────────────────┘
or
HALF_OPEN ──(failure)──► OPEN (timer reset)Structs§
- Circuit
Breaker - Lightweight, lock-free per-proxy circuit breaker.