![]() |
%!s(int64=6) %!d(string=hai) anos | |
---|---|---|
.. | ||
BUILD.bazel | %!s(int64=6) %!d(string=hai) anos | |
README.md | %!s(int64=6) %!d(string=hai) anos | |
breaker.go | %!s(int64=6) %!d(string=hai) anos |
The circuit-breaker resiliency pattern for golang.
Creating a breaker takes three parameters:
b := breaker.New(3, 1, 5*time.Second)
for {
result := b.Run(func() error {
// communicate with some external service and
// return an error if the communication failed
return nil
})
switch result {
case nil:
// success!
case breaker.ErrBreakerOpen:
// our function wasn't run because the breaker was open
default:
// some other error
}
}