instance method
work_from_queue
Ruby on Rails 7.1.6
Since v6.1.7.10Signature
work_from_queue()
No documentation comment.
Source
# File activesupport/lib/active_support/testing/parallelization/worker.rb, line 36
def work_from_queue
while job = @queue.pop
perform_job(job)
end
end
Defined in activesupport/lib/active_support/testing/parallelization/worker.rb line 36
· View on GitHub
· Improve this page
· Find usages on GitHub