summaryrefslogtreecommitdiff
path: root/service/watcher/watcher.go
blob: 9cf129df8ab56f8b8767f96e3e59dfc49018ce7b (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 watcher

import (
	"log"
	"time"
)

// disconnect??
type Service struct {
	// defines how often
	interval time.Duration
	pool     Pool

	stop chan interface{}
}

// NewWatcher creates new pool watcher.
func NewWatcher(p Pool, i time.Duration) *Service {
	w := &Service{
		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 *Service) Stop() {
	close(w.stop)
}

func (w *Service) update() {
	for _, w := range w.pool.Workers() {
		log.Println(w)

	}
}