| // 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. |
| // A Ticker holds a synchronous channel that delivers `ticks' of a clock |
| C <-chan Time // The channel on which the ticks are delivered. |
| // NewTicker returns a new Ticker containing a channel that will send the |
| // time, in nanoseconds, with a period specified by the duration argument. |
| // It adjusts the intervals or drops ticks to make up for slow receivers. |
| // The duration d must be greater than zero; if not, NewTicker will panic. |
| func NewTicker(d Duration) *Ticker { |
| panic(errors.New("non-positive interval for NewTicker")) |
| // 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. |
| // Stop turns off a ticker. After Stop, no more ticks will be sent. |
| func (t *Ticker) Stop() { |
| // 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(d Duration) <-chan Time { |