mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-18 08:26:38 +02:00
18 lines
329 B
Go
18 lines
329 B
Go
// Package jitter provides a random jitter
|
|
package jitter
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
r = rand.New(rand.NewSource(time.Now().UnixNano()))
|
|
)
|
|
|
|
// Do returns a random time to jitter with max cap specified.
|
|
func Do(d time.Duration) time.Duration {
|
|
v := r.Float64() * float64(d.Nanoseconds())
|
|
return time.Duration(v)
|
|
}
|