//Move the circuit to half open state internal CircuitBreakerState MoveToHalfOpenState() { state = new HalfOpenState(this); return(state); }
//Move the circuit to closed state internal CircuitBreakerState MoveToClosedState() { state = new ClosedState(this); return(state); }