1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-21 20:46:08 +03:00
go-patterns/stability/circuit_breaker.md
2016-09-04 13:52:42 -04:00

348 B

Circuit Breaker Pattern

The circuit breaker design pattern is used to detect failures and encapsulates logic of preventing a failure to reoccur constantly.

Implementation and Example

An example of implementation and usage can be found in circuitbreaker.go.