route/vendor/github.com/lucas-clemente/quic-go/congestion/clock.go

19 lines
334 B
Go
Raw Normal View History

2017-12-12 02:51:45 +00:00
package congestion
import "time"
// A Clock returns the current time
type Clock interface {
Now() time.Time
}
// DefaultClock implements the Clock interface using the Go stdlib clock.
type DefaultClock struct{}
var _ Clock = DefaultClock{}
// Now gets the current time
func (DefaultClock) Now() time.Time {
return time.Now()
}