ProtonSession

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

Members

Functions

attachments
Record attachments()

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

close
ProtonSession close()

Closed the AMQP session, i.e. allows the End frame to be emitted.

closeHandler
ProtonSession closeHandler(Handler!ProtonSession remoteCloseHandler)

Sets a handler for when an AMQP End 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.

free
void free()

Tidies up related session resources when complete with use. Call only after the session is finished with, i.e. locally and remotely closed.

getCondition
ErrorCondition getCondition()

Gets the local ErrorCondition object.

getConnection
ProtonConnection getConnection()

Gets the connection this session is on.

getIncomingCapacity
int getIncomingCapacity()

Gets the incoming capacity in bytes, used to govern session-level flow control.

getRemoteCondition
ErrorCondition getRemoteCondition()

Gets the remote ErrorCondition object.

open
ProtonSession open()

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

openHandler
ProtonSession openHandler(Handler!ProtonSession remoteOpenHandler)

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

setCondition
ProtonSession setCondition(ErrorCondition condition)

Sets the local ErrorCondition object.

setIncomingCapacity
ProtonSession setIncomingCapacity(int capacity)

Sets the incoming capacity in bytes, used to govern session-level flow control.

Meta