method

work_from_queue

work_from_queue()
public

No documentation available.

# File activesupport/lib/active_support/testing/parallelization/worker.rb, line 36
        def work_from_queue
          while job = @queue.pop
            perform_job(job)
          end
        end