class Bundler::ParallelWorkers::UnixWorker::JobHandler

Public Instance Methods

work(obj) click to toggle source
# File lib/bundler/parallel_workers/unix_worker.rb, line 9
def work(obj)
  Marshal.dump obj, io_w
  Marshal.load io_r
rescue IOError, Errno::EPIPE
  nil
end