Enum CircuitState
Circuit breaker state machine states.
public enum CircuitState
Fields
Closed = 0Normal operation — all calls pass through detection.
HalfOpen = 2Cooldown expired — limited probe calls allowed to test recovery.
Open = 1Loop detected — calls are blocked until cooldown expires.