This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
process_queue(i)
private
No documentation available.
# File lib/bundler/worker.rb, line 55
def process_queue(i)
loop do
obj = @request_queue.deq
break if obj.equal? POISON
@response_queue.enq apply_func(obj, i)
end
end