class Servolux::Prefork::Worker

def start


by the user to the prefork pool will be executed in the child process.
Start this worker. A new process will be forked, and the code supplied
def start
  @error = nil
  @piper = ::Servolux::Piper.new('rw', :timeout => @prefork.timeout)
  parent if @piper.parent?
  child if @piper.child?
  self
end