Circuit breaker markdown

This commit is contained in:
Anthony Atkinson
2016-09-04 13:52:42 -04:00
parent 5ee14c58f3
commit 9d21f856cd
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
# Circuit Breaker Pattern
The [circuit breaker design pattern](https://en.wikipedia.org/wiki/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](circuitbreaker.go).