(actualUrl *url.URL, err error, responseCode int)
| 34 | |
| 35 | type BackoffManager interface { |
| 36 | UpdateBackoff(actualUrl *url.URL, err error, responseCode int) |
| 37 | CalculateBackoff(actualUrl *url.URL) time.Duration |
| 38 | Sleep(d time.Duration) |
| 39 | } |
no outgoing calls