Method: Bundler::Worker#deq

Defined in:
lib/bundler/worker.rb

#deqObject

Retrieves results of job function being executed in worker pool

[View source]

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