Method: ActiveSupport::Testing::Parallelization::Worker#work_from_queue

Defined in:
activesupport/lib/active_support/testing/parallelization/worker.rb

#work_from_queueObject



36
37
38
39
40
# File 'activesupport/lib/active_support/testing/parallelization/worker.rb', line 36

def work_from_queue
  while job = @queue.pop
    perform_job(job)
  end
end