class URI::AMQP

AMQP URI scheme for the AMQP protocol

Constants

DEFAULT_PORT

Public Instance Methods

amqp_address() click to toggle source

@return [String] The AMQP address is the {#path} stripped of any leading “/”

# File lib/core/uri.rb, line 28
def amqp_address() path[0] == "/" ? path[1..-1] : path; end