Adds a capability to be set on the receiver source terminus.
Sets the list of capabilities to be set on the receiver source terminus.
Sets the max buffered messages. This message can be used to configure the initial credit of a receiver.
Sets the local QOS config.
Sets a message selector string.
Used to define an "apache.org:selector-filter:string" filter on the source terminus, using SQL-based syntax to request the server filters which messages are delivered to the receiver (if supported by the server in question). Precise functionality supported and syntax needed can vary depending on the server.
Sets the auto-acknowledgement.
When enabled (default), the messages are automatically acknowledged. If set to false
, the messages must
be acknowledged explicitly using {@link AmqpMessage#accepted}, {@link AmqpMessage#released} and
{@link AmqpMessage#rejected}.
Sets the durability.
Passing true
sets the expiry policy of the source to NEVER
and the durability of the source
to UNSETTLED_STATE
.
Sets whether the Source terminus to be used should specify it is 'dynamic', requesting the peer creates a node and names it with a generated address.
The address provided by the peer can then be inspected using the {@link AmqpReceiver#address} method on the AmqpReceiver received once opened.
Sets whether this receiver should not receive messages that were sent using the same underlying connection.
Used to determine whether to define an "apache.org:no-local-filter:list" filter on the source terminus, requesting that the server filters which messages are delivered to the receiver so that they do not include messages sent on the same underlying connection (if supported by the server in question).
Sets the auto-acknowledgement.
When enabled (default), the messages are automatically acknowledged. If set to false
, the messages must
be acknowledged explicitly using {@link AmqpMessage#accepted}, {@link AmqpMessage#released} and
{@link AmqpMessage#rejected}.
Sets the list of capabilities to be set on the receiver source terminus.
Sets the durability.
Passing true
sets the expiry policy of the source to NEVER
and the durability of the source
to UNSETTLED_STATE
.
Sets whether the Source terminus to be used should specify it is 'dynamic', requesting the peer creates a node and names it with a generated address.
The address provided by the peer can then be inspected using the {@link AmqpReceiver#address} method on the AmqpReceiver received once opened.
Sets the max buffered messages. This message can be used to configure the initial credit of a receiver.
Sets whether this receiver should not receive messages that were sent using the same underlying connection.
Used to determine whether to define an "apache.org:no-local-filter:list" filter on the source terminus, requesting that the server filters which messages are delivered to the receiver so that they do not include messages sent on the same underlying connection (if supported by the server in question).
Sets the local QOS config.
Sets a message selector string.
Used to define an "apache.org:selector-filter:string" filter on the source terminus, using SQL-based syntax to request the server filters which messages are delivered to the receiver (if supported by the server in question). Precise functionality supported and syntax needed can vary depending on the server.
Generated using TypeDoc
Configures the AMQP Receiver.