-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepeater.go
48 lines (41 loc) · 811 Bytes
/
repeater.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package repeater
import (
"time"
)
// Start repeating fnToCall with passed frequency, frequency can be 0, if so, ticker won't be used.
// Use returned function to stop repeater, this function waits until repeater is stopped.
func StartRepeater(frequency time.Duration, fnToCall func()) (stop func()) {
if fnToCall == nil {
panic("fnToCall must not be nil")
}
stopCh := make(chan struct{})
waitCh := make(chan struct{})
go func() {
defer close(waitCh)
if frequency != 0 {
ticker := time.NewTicker(frequency)
for {
select {
case <-stopCh:
ticker.Stop()
return
case <-ticker.C:
fnToCall()
}
}
} else {
for {
select {
case <-stopCh:
return
default:
fnToCall()
}
}
}
}()
return func() {
close(stopCh)
<-waitCh
}
}