2
0
mirror of https://github.com/hibiken/asynq.git synced 2026-02-01 22:11:21 +00:00
Files
asynq/poller.go

55 lines
982 B
Go
Raw Normal View History

2019-11-18 21:23:49 -08:00
package asynq
import (
"log"
"time"
2019-12-03 21:01:26 -08:00
"github.com/hibiken/asynq/internal/rdb"
2019-11-18 21:23:49 -08:00
)
type poller struct {
2019-12-03 21:01:26 -08:00
rdb *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
}
2019-12-04 07:14:37 -08:00
func newPoller(r *rdb.RDB, avgInterval time.Duration) *poller {
2019-11-19 19:44:41 -08:00
return &poller{
2019-12-03 21:01:26 -08:00
rdb: r,
2019-11-19 19:44:41 -08:00
done: make(chan struct{}),
avgInterval: avgInterval,
}
}
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-12-04 07:28:57 -08:00
if err := p.rdb.CheckAndEnqueue(); err != nil {
2019-12-04 07:14:37 -08:00
log.Printf("[ERROR] could not forward scheduled tasks: %v\n", err)
2019-11-18 21:23:49 -08:00
}
}