2
0
mirror of https://github.com/hibiken/asynq.git synced 2025-08-19 15:08:55 +08:00

Add Pause and Unpause methods to rdb

This commit is contained in:
Ken Hibino
2020-06-03 06:44:12 -07:00
parent e236d55477
commit 4595bd41c3
3 changed files with 192 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ const (
RetryQueue = "asynq:retry" // ZSET
DeadQueue = "asynq:dead" // ZSET
InProgressQueue = "asynq:in_progress" // LIST
PausedQueues = "asynq:paused" // SET
CancelChannel = "asynq:cancel" // PubSub channel
)