Logarithm::Retry::CircuitState
Inherits Enum < Comparable < Value < Object
Represents the current state of a circuit breaker.
The circuit breaker transitions between these states based on operation success/failure:
CLOSED: Normal operation, all requests pass throughOPEN: Failure threshold exceeded, requests fail fastHALF_OPEN: Testing recovery, limited requests allowed
Constants
CLOSED = 0
OPEN = 1
HALF_OPEN = 2