Slide 8
Slide 8 text
@andyfleener
Cue Martin Fowler
wrap a protected function call in a circuit
breaker object
Monitors for failures
Failures reach a certain threshold, the circuit
breaker trips
Calls to the circuit breaker return with an error,
without the protected call being made at all
Eventually a timer expires and attempts the call
again
If success go back to 1 If failure go back to 3