This commit is contained in:
Jaime Pillora 2016-08-03 12:50:56 +10:00 committed by GitHub
parent 0496a6c14d
commit ed03cf77f8
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Backoff
A simple backoff algorithm in Go (Golang)
A simple exponential backoff counter in Go (Golang)
[![GoDoc](https://godoc.org/github.com/jpillora/backoff?status.svg)](https://godoc.org/github.com/jpillora/backoff) [![Circle CI](https://circleci.com/gh/jpillora/backoff.svg?style=shield)](https://circleci.com/gh/jpillora/backoff)
@ -110,6 +110,10 @@ Reset!
214.957989ms
```
#### Documentation
https://godoc.org/github.com/jpillora/backoff
#### Credits
Ported from some JavaScript written by [@tj](https://github.com/tj)