2
0
mirror of https://github.com/hibiken/asynq.git synced 2026-05-12 13:00:06 +08:00
Files
asynq/poller.go

59 lines
1.0 KiB
Go
Raw Normal View History

2019-11-18 21:23:49 -08:00
package asynq
import (
"log"
"time"
)
type poller struct {
2019-11-19 19:44:41 -08:00
rdb *rdb
2019-11-18 21:23:49 -08:00
// channel to communicate back to the long running "poller" goroutine.
2019-11-18 21:23:49 -08:00
done chan struct{}
// poll interval on average
avgInterval time.Duration
// redis ZSETs to poll
zsets []string
}
2019-11-19 19:44:41 -08:00
func newPoller(rdb *rdb, avgInterval time.Duration, zsets []string) *poller {
return &poller{
rdb: rdb,
done: make(chan struct{}),
avgInterval: avgInterval,
zsets: zsets,
}
}
2019-11-18 21:23:49 -08:00
func (p *poller) terminate() {
log.Println("[INFO] Poller shutting down...")
2019-11-20 20:27:01 -08:00
// Signal the poller goroutine to stop polling.
2019-11-18 21:23:49 -08:00
p.done <- struct{}{}
}
2019-11-21 20:22:55 -08:00
// start starts the "poller" goroutine.
2019-11-18 21:23:49 -08:00
func (p *poller) start() {
go func() {
for {
select {
case <-p.done:
log.Println("[INFO] Poller done.")
return
default:
2019-11-20 20:27:01 -08:00
p.exec()
time.Sleep(p.avgInterval)
2019-11-18 21:23:49 -08:00
}
}
}()
}
2019-11-20 20:27:01 -08:00
func (p *poller) exec() {
2019-11-18 21:23:49 -08:00
for _, zset := range p.zsets {
2019-11-26 06:52:58 -08:00
if err := p.rdb.forward(zset); err != nil {
2019-11-27 06:21:57 -08:00
log.Printf("[ERROR] could not forward scheduled tasks from %q: %v\n", zset, err)
2019-11-18 21:23:49 -08:00
}
}
}