Method: Bundler::Worker#deq
- Defined in:
- lib/bundler/worker.rb
permalink #deq ⇒ Object
Retrieves results of job function being executed in worker pool
41 42 43 44 45 |
# File 'lib/bundler/worker.rb', line 41 def deq result = @response_queue.deq raise result.exception if result.is_a?(WrappedException) result end |