module Supervisor
Nested
Definitions
def self.endpoint(path = "supervisor.ipc")
Get the supervisor IPC endpoint.
Signature
-
parameter
pathString The path for the Unix socket (default: "supervisor.ipc").
-
returns
IO::Endpoint The Unix socket endpoint.
Implementation
def self.endpoint(path = "supervisor.ipc")
::IO::Endpoint.unix(path)
end