Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
stop_threads()
private
Stop the worker threads by sending a poison object down the request queue
so as worker threads after retrieving it, shut themselves down
# File lib/bundler/worker.rb, line 71
def stop_threads
return unless @threads
@threads.each { @request_queue.enq POISON }
@threads.each(&:join)
@threads = nil
end