blob: 3b654c3487cd4ff4deacc337f8c2438ba47cded1 (
plain)
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
|
package roadrunner
import (
"log"
"time"
)
// disconnect??
type Watcher struct {
// defines how often
interval time.Duration
pool Pool
stop chan interface{}
}
// NewWatcher creates new pool watcher.
func NewWatcher(p Pool, i time.Duration) *Watcher {
w := &Watcher{
interval: i,
pool: p,
stop: make(chan interface{}),
}
go func() {
ticker := time.NewTicker(w.interval)
for {
select {
case <-ticker.C:
w.update()
case <-w.stop:
return
}
}
}()
return w
}
func (w *Watcher) Stop() {
close(w.stop)
}
func (w *Watcher) update() {
for _, w := range w.pool.Workers() {
log.Println(w)
}
}
|