arrow-fx-coroutines / arrow.fx.coroutines / CircuitBreaker / State
sealed class State
The initial state when initializing a CircuitBreaker is Closed.
The available states are:
| Closed | The initial State of the CircuitBreaker. While in this state, the circuit breaker allows tasks to be executed.class Closed : State | 
    
| HalfOpen | class HalfOpen : State | 
    
| Open | class Open : State | 
    
Do you like Arrow?
✖