# Functions
NewBreakerGroup returns global breaker group instance brks.
NewProba return Proba pointer.
# Constants
StateClosed when circuit breaker closed, request allowed, the breaker calc the succeed ratio, if request num greater request setting and ratio lower than the setting ratio, then reset state to open.
StateOpen when circuit breaker open, request not allowed, after sleep some duration, allow one single request for testing the health, if ok then state reset to closed, if not continue the step.
# Structs
BreakerGroup brks.
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author