ProtonConnection

@author <a href="http://tfox.org">Tim Fox</a> @author <a href="http://hiramchirino.com">Hiram Chirino</a>

interface ProtonConnection {}

Members

Functions

attachments
Record attachments()

Retrieves the attachments record, upon which application items can be set/retrieved.

close
ProtonConnection close()

Closes the AMQP connection, i.e. allows the Close frame to be emitted.

closeHandler
ProtonConnection closeHandler(AsyncResultHandler!ProtonConnection closeHandler)

Sets a handler for when an AMQP Close frame is received from the remote peer.

createReceiver
ProtonReceiver createReceiver(string address)

Creates a receiver used to consumer messages from the given node address.

createReceiver
ProtonReceiver createReceiver(string address, ProtonLinkOptions receiverOptions)

Creates a receiver used to consumer messages from the given node address.

createSender
ProtonSender createSender(string address)

Creates a sender used to send messages to the given node address. If no address (i.e null) is specified then a sender will be established to the 'anonymous relay' and each message must specify its destination address.

createSender
ProtonSender createSender(string address, ProtonLinkOptions senderOptions)

Creates a sender used to send messages to the given node address. If no address (i.e null) is specified then a sender will be established to the 'anonymous relay' and each message must specify its destination address.

createSession
ProtonSession createSession()

Creates a new session, which can be used to create new senders/receivers on.

disconnect
void disconnect()

Disconnects the underlying transport connection. This can occur asynchronously and may not complete until some time after the method has returned.

disconnectHandler
ProtonConnection disconnectHandler(AmqpEventHandler!ProtonConnection disconnectHandler)

Sets a handler for when the underlying transport connection indicates it has disconnected.

getCondition
ErrorCondition getCondition()

Gets the local ErrorCondition object.

getContainer
string getContainer()

Gets the container id value requested of/advertised to peers in the AMQP Open frame.

getHostname
string getHostname()

Gets the hostname value requested of/advertised to peers in the AMQP Open frame.

getRemoteCondition
ErrorCondition getRemoteCondition()

Gets the remote ErrorCondition object.

getRemoteContainer
string getRemoteContainer()

Returns the container value requested by/advertised by remote peer in their AMQP Open frame.

getRemoteDesiredCapabilities
Symbol[] getRemoteDesiredCapabilities()

Returns the desired connection capabilities sent by the remote peer in its Open frame. May be null.

getRemoteHostname
string getRemoteHostname()

Returns the container value requested by/advertised by remote peer in their AMQP Open frame.

getRemoteOfferedCapabilities
Symbol[] getRemoteOfferedCapabilities()

Returns the offered connection capabilities sent by the remote peer in its Open frame. May be null.

getRemoteProperties
Map!(Symbol, Object) getRemoteProperties()

Returns the connection properties map if sent by the remote peer in its Open frame. May be null.

isAnonymousRelaySupported
bool isAnonymousRelaySupported()

Allows querying (once the connection has remotely opened) whether the peer advertises support for the anonymous relay (sender with null address).

isDisconnected
bool isDisconnected()

Gets whether the underlying transport has indicated it is disconnected.

open
ProtonConnection open()

Opens the AMQP connection, i.e. allows the Open frame to be emitted. Typically used after any additional configuration is performed on the connection object.

openHandler
ProtonConnection openHandler(Handler!ProtonConnection remoteOpenHandler)

Sets a handler for when an AMQP Open frame is received from the remote peer.

receiverOpenHandler
ProtonConnection receiverOpenHandler(Handler!ProtonReceiver remoteReceiverOpenHandler)

Sets a handler for when an AMQP Attach frame is received from the remote peer for a receiving link.

senderOpenHandler
ProtonConnection senderOpenHandler(Handler!ProtonSender remoteSenderOpenHandler)

Sets a handler for when an AMQP Attach frame is received from the remote peer for a sending link.

sessionOpenHandler
ProtonConnection sessionOpenHandler(AmqpEventHandler!ProtonSession remoteSessionOpenHandler)

Sets a handler for when an AMQP Begin frame is received from the remote peer.

setCondition
ProtonConnection setCondition(ErrorCondition condition)

Sets the local ErrorCondition object.

setContainer
ProtonConnection setContainer(string container)

Sets the container id value advertised to peers in the AMQP Open frame. Sometimes used as a 'client-id' by clients.

setDesiredCapabilities
ProtonConnection setDesiredCapabilities(Symbol[] capabilities)

Sets the desired connection capabilities to be sent to the remote peer in our Open frame.

setHostname
ProtonConnection setHostname(string hostname)

Sets the hostname value requested of/advertised to peers in the AMQP Open frame.

setOfferedCapabilities
ProtonConnection setOfferedCapabilities(Symbol[] capabilities)

Sets the offered connection capabilities to be sent to the remote peer in our Open frame.

setProperties
ProtonConnection setProperties(Map!(Symbol, Object) properties)

Sets the connection properties map to be sent to the remote peer in our Open frame.

Meta