Browse Source

Add ThrottleTimer.Unset

pull/1842/head
Jae Kwon 9 years ago
parent
commit
c58b1cbf8a
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      throttle_timer.go

+ 4
- 0
throttle_timer.go View File

@ -46,6 +46,10 @@ func (t *ThrottleTimer) Set() {
}
}
func (t *ThrottleTimer) Unset() {
t.timer.Stop()
}
// For ease of .Stop()'ing services before .Start()'ing them,
// we ignore .Stop()'s on nil ThrottleTimers
func (t *ThrottleTimer) Stop() bool {


Loading…
Cancel
Save