mirror of
https://github.com/hibiken/asynq.git
synced 2024-12-26 07:42:17 +08:00
Make Launcher thread safe
This commit is contained in:
parent
e238d3835d
commit
eb6a5032f6
8
asynq.go
8
asynq.go
@ -15,6 +15,7 @@ import (
|
||||
"math"
|
||||
"math/rand"
|
||||
"strconv"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/go-redis/redis/v7"
|
||||
@ -105,8 +106,9 @@ func (c *Client) enqueue(msg *taskMessage, executeAt time.Time) error {
|
||||
type Launcher struct {
|
||||
rdb *redis.Client
|
||||
|
||||
// running indicates whether the workes are currently running.
|
||||
// running indicates whether manager and poller are both running.
|
||||
running bool
|
||||
mu sync.Mutex
|
||||
|
||||
poller *poller
|
||||
|
||||
@ -135,6 +137,8 @@ type TaskHandler func(*Task) error
|
||||
|
||||
// Start starts the manager and poller.
|
||||
func (l *Launcher) Start(handler TaskHandler) {
|
||||
l.mu.Lock()
|
||||
defer l.mu.Unlock()
|
||||
if l.running {
|
||||
return
|
||||
}
|
||||
@ -147,6 +151,8 @@ func (l *Launcher) Start(handler TaskHandler) {
|
||||
|
||||
// Stop stops both manager and poller.
|
||||
func (l *Launcher) Stop() {
|
||||
l.mu.Lock()
|
||||
defer l.mu.Unlock()
|
||||
if !l.running {
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user