Oban.resume_queue
You're seeing just the function
resume_queue
, go back to Oban module for more information.
Specs
resume_queue(name(), opts :: [queue_option()]) :: :ok
Resume executing jobs in a paused queue.
Options
:queue
- a string or atom specifying the queue to resume, required:local_only
- whether the queue will be resumed only on the local node, default:false
Example
Resume a paused default queue:
Oban.resume_queue(:default)
:ok
Resume the default queue, but only on the local node:
Oban.resume_queue(queue: :default, local_only: true)
:ok