module Falcon::Environment::Supervisor
def endpoint
The endpoint the supervisor will bind to.
def endpoint Async::IO::Endpoint.unix(ipc_path) end
def ipc_path
The IPC path to use for communication with the supervisor.
def ipc_path ::File.expand_path("supervisor.ipc", root) end
def name
The name of the supervisor
def name "supervisor" end
def service_class
The service class to use for the supervisor.
def service_class ::Falcon::Service::Supervisor end