mirror of
https://github.com/golang/go
synced 2024-11-20 08:04:42 -07:00
time: explicitely mention Tickers have to be stopped
LGTM=rsc R=golang-codereviews, gobot, rsc CC=golang-codereviews https://golang.org/cl/64770043
This commit is contained in:
parent
f12a167ba2
commit
7403071ada
@ -17,6 +17,7 @@ type Ticker struct {
|
|||||||
// time with a period specified by the duration argument.
|
// time with a period specified by the duration argument.
|
||||||
// It adjusts the intervals or drops ticks to make up for slow receivers.
|
// 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.
|
// The duration d must be greater than zero; if not, NewTicker will panic.
|
||||||
|
// Stop the ticker to release associated resources.
|
||||||
func NewTicker(d Duration) *Ticker {
|
func NewTicker(d Duration) *Ticker {
|
||||||
if d <= 0 {
|
if d <= 0 {
|
||||||
panic(errors.New("non-positive interval for NewTicker"))
|
panic(errors.New("non-positive interval for NewTicker"))
|
||||||
|
Loading…
Reference in New Issue
Block a user