//arrow-fx-coroutines/arrow.fx.coroutines/CircuitBreaker/doOnHalfOpen
common fun doOnHalfOpen(callback: suspend () -> Unit): CircuitBreaker
Returns a new circuit breaker that wraps the state of the source and that will fire the given callback upon the circuit breaker transitioning to the CircuitBreaker.HalfOpen state.
It is useful for gathering stats.
NOTE: calling this method multiple times will create a circuit breaker that will call multiple callbacks, thus the callback given is cumulative with other specified callbacks.
a new circuit breaker wrapping the state of the source
common
callback | is to be executed when the state evolves into CircuitBreaker.HalfOpen |
Do you like Arrow?
✖