Class: Mutant::Isolation::Fork::Child Private

Inherits:
Object
  • Object
show all
Includes:
Procto, Unparser::Adamantium
Defined in:
lib/mutant/isolation/fork.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Parent

Instance Method Summary collapse

Methods included from Procto

included

Instance Method Details

#callundefined

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Handle child process

Returns:

  • (undefined)


211
212
213
214
215
216
# File 'lib/mutant/isolation/fork.rb', line 211

def call
  world.stderr.reopen(log_pipe)
  world.stdout.reopen(log_pipe)
  result_pipe.syswrite(world.marshal.dump(block.call))
  result_pipe.close
end