forked from zlyuancn/zutils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.go
More file actions
67 lines (61 loc) · 1.06 KB
/
timer.go
File metadata and controls
67 lines (61 loc) · 1.06 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
-------------------------------------------------
Author : Zhang Fan
date: 2020/12/11
Description :
-------------------------------------------------
*/
package zutils
import (
"context"
"time"
)
var Timer = new(timerUtils)
type timerUtils struct{}
// 创建一个Ticker
func NewTicker(d time.Duration) (<-chan time.Time, context.CancelFunc) {
done := make(chan struct{})
cc := make(chan time.Time, 1)
go func() {
timer := time.NewTicker(d)
defer func() {
timer.Stop()
close(cc)
}()
for {
select {
case t := <-timer.C:
select {
case cc <- t:
default:
}
case <-done:
return
}
}
}()
return cc, func() {
close(done)
}
}
// 创建一个Ticker, 每隔 d 会执行一次 fn
func NewDoTicker(d time.Duration, fn func(i int, t time.Time)) context.CancelFunc {
done := make(chan struct{})
go func() {
timer := time.NewTicker(d)
defer timer.Stop()
var i int
for {
select {
case t := <-timer.C:
fn(i, t)
i++
case <-done:
return
}
}
}()
return func() {
close(done)
}
}