func()

in exponential/exponential.go [32:41]


func (t *timer) Stop() bool {
	if t.timer == nil {
		t.mu.Lock()
		defer t.mu.Unlock()
		t.stopped = true
		return true
	}

	return t.timer.Stop()
}