mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-10 11:31:58 +08:00
66 lines
1.4 KiB
Go
66 lines
1.4 KiB
Go
// Copyright 2020 Kentaro Hibino. All rights reserved.
|
|
// Use of this source code is governed by a MIT license
|
|
// that can be found in the LICENSE file.
|
|
|
|
package asynq
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/hibiken/asynq/internal/base"
|
|
"github.com/hibiken/asynq/internal/log"
|
|
"github.com/hibiken/asynq/internal/rdb"
|
|
)
|
|
|
|
type subscriber struct {
|
|
logger *log.Logger
|
|
rdb *rdb.RDB
|
|
|
|
// channel to communicate back to the long running "subscriber" goroutine.
|
|
done chan struct{}
|
|
|
|
// cancelations hold cancel functions for all in-progress tasks.
|
|
cancelations *base.Cancelations
|
|
}
|
|
|
|
func newSubscriber(l *log.Logger, rdb *rdb.RDB, cancelations *base.Cancelations) *subscriber {
|
|
return &subscriber{
|
|
logger: l,
|
|
rdb: rdb,
|
|
done: make(chan struct{}),
|
|
cancelations: cancelations,
|
|
}
|
|
}
|
|
|
|
func (s *subscriber) terminate() {
|
|
s.logger.Info("Subscriber shutting down...")
|
|
// Signal the subscriber goroutine to stop.
|
|
s.done <- struct{}{}
|
|
}
|
|
|
|
func (s *subscriber) start(wg *sync.WaitGroup) {
|
|
pubsub, err := s.rdb.CancelationPubSub()
|
|
cancelCh := pubsub.Channel()
|
|
if err != nil {
|
|
s.logger.Error("cannot subscribe to cancelation channel: %v", err)
|
|
return
|
|
}
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
for {
|
|
select {
|
|
case <-s.done:
|
|
pubsub.Close()
|
|
s.logger.Info("Subscriber done")
|
|
return
|
|
case msg := <-cancelCh:
|
|
cancel, ok := s.cancelations.Get(msg.Payload)
|
|
if ok {
|
|
cancel()
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
}
|