Method: Sidekiq::Worker::ClassMethods#drain

Defined in:
lib/sidekiq/testing.rb

#drainObject

Drain and run all jobs for this worker



157
158
159
160
161
# File 'lib/sidekiq/testing.rb', line 157

def drain
  while job = jobs.shift do
    process_job(job)
  end
end