Skip to content
Snippets Groups Projects
Unverified Commit 840e6fdb authored by Douwe Maan's avatar Douwe Maan
Browse files

Add queue_size method to ApplicationWorker

parent 27c4b8aa
No related branches found
No related tags found
No related merge requests found
# frozen_string_literal: true
 
require 'sidekiq/api'
Sidekiq::Worker.extend ActiveSupport::Concern
 
module ApplicationWorker
Loading
Loading
@@ -44,6 +46,10 @@ module ApplicationWorker
get_sidekiq_options['queue'].to_s
end
 
def queue_size
Sidekiq::Queue.new(queue).size
end
def bulk_perform_async(args_list)
Sidekiq::Client.push_bulk('class' => self, 'args' => args_list)
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment