module IO::Endpoint

def self.unix(path = "", type = ::Socket::SOCK_STREAM, **options)

Returns:
  • (UNIXEndpoint) -

Parameters:
  • options () -- keyword arguments passed through to {UNIXEndpoint#initialize}
  • type () -- Socket type
  • path (String) --
def self.unix(path = "", type = ::Socket::SOCK_STREAM, **options)
	UNIXEndpoint.new(path, type, **options)
end