2010-12-03 04:34:57 +00:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package time
|
|
|
|
|
2011-12-12 23:40:51 +00:00
|
|
|
import "errors"
|
2010-12-03 04:34:57 +00:00
|
|
|
|
|
|
|
// A Ticker holds a synchronous channel that delivers `ticks' of a clock
|
|
|
|
// at intervals.
|
|
|
|
type Ticker struct {
|
2011-12-12 23:40:51 +00:00
|
|
|
C <-chan int64 // The channel on which the ticks are delivered.
|
|
|
|
r runtimeTimer
|
2010-12-03 04:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewTicker returns a new Ticker containing a channel that will
|
|
|
|
// send the time, in nanoseconds, every ns nanoseconds. It adjusts the
|
2011-01-21 18:19:03 +00:00
|
|
|
// intervals to make up for pauses in delivery of the ticks. The value of
|
|
|
|
// ns must be greater than zero; if not, NewTicker will panic.
|
2010-12-03 04:34:57 +00:00
|
|
|
func NewTicker(ns int64) *Ticker {
|
|
|
|
if ns <= 0 {
|
2011-12-03 02:17:34 +00:00
|
|
|
panic(errors.New("non-positive interval for NewTicker"))
|
2010-12-03 04:34:57 +00:00
|
|
|
}
|
2011-12-12 23:40:51 +00:00
|
|
|
// Give the channel a 1-element time buffer.
|
|
|
|
// If the client falls behind while reading, we drop ticks
|
|
|
|
// on the floor until the client catches up.
|
|
|
|
c := make(chan int64, 1)
|
2011-01-21 18:19:03 +00:00
|
|
|
t := &Ticker{
|
2011-12-12 23:40:51 +00:00
|
|
|
C: c,
|
|
|
|
r: runtimeTimer{
|
|
|
|
when: Nanoseconds() + ns,
|
|
|
|
period: ns,
|
|
|
|
f: sendTime,
|
|
|
|
arg: c,
|
|
|
|
},
|
2011-01-21 18:19:03 +00:00
|
|
|
}
|
2011-12-12 23:40:51 +00:00
|
|
|
startTimer(&t.r)
|
2010-12-03 04:34:57 +00:00
|
|
|
return t
|
|
|
|
}
|
2011-12-12 23:40:51 +00:00
|
|
|
|
|
|
|
// Stop turns off a ticker. After Stop, no more ticks will be sent.
|
|
|
|
func (t *Ticker) Stop() {
|
|
|
|
stopTimer(&t.r)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tick is a convenience wrapper for NewTicker providing access to the ticking
|
|
|
|
// channel only. Useful for clients that have no need to shut down the ticker.
|
|
|
|
func Tick(ns int64) <-chan int64 {
|
|
|
|
if ns <= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return NewTicker(ns).C
|
|
|
|
}
|