-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwait.go
More file actions
65 lines (55 loc) · 1.06 KB
/
wait.go
File metadata and controls
65 lines (55 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
package wkafka
import (
"context"
"time"
"github.com/cenkalti/backoff/v4"
)
type waitRetry struct {
interval time.Duration
backoff *backoff.ExponentialBackOff
ch chan struct{}
}
func newWaitRetry(initialDuration, maxDuration time.Duration) *waitRetry {
return &waitRetry{
interval: initialDuration,
backoff: backoff.NewExponentialBackOff(
backoff.WithInitialInterval(initialDuration),
backoff.WithMaxInterval(maxDuration),
backoff.WithMaxElapsedTime(0),
),
ch: make(chan struct{}, 1),
}
}
func (w *waitRetry) CurrentInterval() time.Duration {
return w.interval
}
func (w *waitRetry) next() {
w.interval = w.backoff.NextBackOff()
}
func (w *waitRetry) Sleep(ctx context.Context) error {
select {
case <-ctx.Done():
return ctx.Err()
case <-time.After(w.interval):
w.next()
return nil
case <-w.ch:
// consume all remaining messages
for {
select {
case <-w.ch:
default:
return nil
}
}
}
}
func (w *waitRetry) Trigger() {
select {
case w.ch <- struct{}{}:
default:
}
}
func (w *waitRetry) Close() {
close(w.ch)
}