Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Default = FiveSec
Default is the default backoff policy to use
View Source
var FiveSec = Policy{ Millis: []int{500, 750, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000}, }
FiveSec is a backoff policy ranging up to 5 seconds.
View Source
var FiveSecStartGrace = Policy{ Millis: []int{0, 25, 50, 75, 100, 125, 150, 200, 250, 500, 750, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000}, }
FiveSecStartGrace Like FiveSec but allows for a few fairly rapid initial tries
View Source
var TwentySec = Policy{ Millis: []int{ 500, 750, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 5500, 5750, 6000, 6500, 7000, 7500, 8000, 8500, 9000, 9500, 10000, 10500, 10750, 11000, 11500, 12000, 12500, 13000, 13500, 14000, 14500, 15000, 15500, 15750, 16000, 16500, 17000, 17500, 18000, 18500, 19000, 19500, 20000, }, }
TwentySec is a backoff policy ranging up to 20 seconds
Functions ¶
This section is empty.
Types ¶
type Policy ¶ added in v0.14.0
type Policy struct {
Millis []int
}
Policy implements a backoff policy, randomizing its delays and saturating at the final value in Millis.
func (Policy) Duration ¶ added in v0.14.0
Duration returns the time duration of the n'th wait cycle in a backoff policy. This is b.Millis[n], randomized to avoid thundering herds.
func (Policy) For ¶ added in v0.14.0
For is a for{} loop that stops on context and has a backoff based sleep between loops if the context completes the loop ends returning the context error
Click to show internal directories.
Click to hide internal directories.