module ProcessHost::Component::Start

Public Instance Methods

start(supervisor=nil) click to toggle source
# File lib/process_host/component.rb, line 16
def start supervisor=nil
  instance = new
  instance.supervisor = supervisor
  instance.start
  instance
end