Skip to content

Instantly share code, notes, and snippets.

@jacoelho
Created August 16, 2016 08:36
Show Gist options
  • Save jacoelho/fe751072c82edc9a4ea72821faea4ba0 to your computer and use it in GitHub Desktop.
Save jacoelho/fe751072c82edc9a4ea72821faea4ba0 to your computer and use it in GitHub Desktop.
type Circuit struct {
TimeOut time.Duration // how long to wait for the execution
FailThreshold uint32 // how many fails until circuit is tripped
RetryThreshold uint32 // how many failed requests until try again
failuresCounter uint32
retriesCounter uint32
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment