mirror of
https://github.com/containous/traefik.git
synced 2025-01-11 05:17:52 +03:00
26 lines
351 B
Go
26 lines
351 B
Go
package clock
|
|
|
|
import "time"
|
|
|
|
type Timer interface {
|
|
C() <-chan time.Time
|
|
Reset(d time.Duration) bool
|
|
Stop() bool
|
|
}
|
|
|
|
type realTimer struct {
|
|
t *time.Timer
|
|
}
|
|
|
|
func (t *realTimer) C() <-chan time.Time {
|
|
return t.t.C
|
|
}
|
|
|
|
func (t *realTimer) Reset(d time.Duration) bool {
|
|
return t.t.Reset(d)
|
|
}
|
|
|
|
func (t *realTimer) Stop() bool {
|
|
return t.t.Stop()
|
|
}
|