Files
node-problem-detector/vendor/code.cloudfoundry.org/clock/ticker.go
2016-12-20 18:11:03 +08:00

21 lines
236 B
Go

package clock
import "time"
type Ticker interface {
C() <-chan time.Time
Stop()
}
type realTicker struct {
t *time.Ticker
}
func (t *realTicker) C() <-chan time.Time {
return t.t.C
}
func (t *realTicker) Stop() {
t.t.Stop()
}