Skip to content

Instantly share code, notes, and snippets.

@gavrie
Last active May 17, 2016 13:13
Show Gist options
  • Save gavrie/529fbeeabd2cd7b83c1aac07d6f47e63 to your computer and use it in GitHub Desktop.
Save gavrie/529fbeeabd2cd7b83c1aac07d6f47e63 to your computer and use it in GitHub Desktop.
type basicRetrier struct {
// ...
virtual retrier
}
func NewBasic(timeout time.Duration, retries int) *basicRetrier {
br := &basicRetrier{
timeout: timeout,
retries: retries,
}
br.virtual = br
return br
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment