Uses of Class
org.apache.qpid.protonj2.client.ReceiverOptions
-
Packages that use ReceiverOptions Package Description org.apache.qpid.protonj2.client org.apache.qpid.protonj2.client.impl -
-
Uses of ReceiverOptions in org.apache.qpid.protonj2.client
Subclasses of ReceiverOptions in org.apache.qpid.protonj2.client Modifier and Type Class Description class
StreamReceiverOptions
Options class that controls various aspects of aStreamReceiver
instance and how a streamed message transfer is written.Methods in org.apache.qpid.protonj2.client that return ReceiverOptions Modifier and Type Method Description ReceiverOptions
ReceiverOptions. autoAccept(boolean autoAccept)
Controls if the created Receiver will automatically accept the deliveries that have been received by the application (default istrue
).ReceiverOptions
ReceiverOptions. autoSettle(boolean autoSettle)
Controls if the created Receiver will automatically settle the deliveries that have been received by the application (default istrue
).ReceiverOptions
ReceiverOptions. clone()
ReceiverOptions
ReceiverOptions. closeTimeout(long closeTimeout)
Configures the timeout used when awaiting a response from the remote that a request to close theReceiver
link.ReceiverOptions
ReceiverOptions. closeTimeout(long timeout, java.util.concurrent.TimeUnit units)
Configures the timeout used when awaiting a response from the remote that a request to close theReceiver
link.protected ReceiverOptions
ReceiverOptions. copyInto(ReceiverOptions other)
Copy all options from thisReceiverOptions
instance into the instance provided.ReceiverOptions
ReceiverOptions. creditWindow(int creditWindow)
A credit window value that will be used to maintain an window of credit for Receiver instances that are created.ReceiverOptions
ReceiverOptions. deliveryMode(DeliveryMode deliveryMode)
Sets theDeliveryMode
value to assign to newly createdReceiver
instances.ReceiverOptions
ReceiverOptions. desiredCapabilities(java.lang.String... desiredCapabilities)
ReceiverOptions
ReceiverOptions. drainTimeout(long drainTimeout)
Sets the drain timeout (in milliseconds) after which aReceiver
request to drain link credit is considered failed and the request will be marked as such.ReceiverOptions
ReceiverOptions. drainTimeout(long timeout, java.util.concurrent.TimeUnit units)
Sets the drain timeout value after which aReceiver
request to drain link credit is considered failed and the request will be marked as such.ReceiverOptions
ReceiverOptions. linkName(java.lang.String linkName)
Configures the link name to use when creating a givenReceiver
instance.ReceiverOptions
ReceiverOptions. offeredCapabilities(java.lang.String... offeredCapabilities)
ReceiverOptions
ReceiverOptions. openTimeout(long openTimeout)
Configures the timeout used when awaiting a response from the remote that a request to open aReceiver
has been honored.ReceiverOptions
ReceiverOptions. openTimeout(long timeout, java.util.concurrent.TimeUnit units)
Configures the timeout used when awaiting a response from the remote that a request to open aReceiver
has been honored.ReceiverOptions
ReceiverOptions. properties(java.util.Map<java.lang.String,java.lang.Object> properties)
ReceiverOptions
ReceiverOptions. requestTimeout(long requestTimeout)
Configures the timeout used when awaiting a response from the remote that a request to perform some action such as starting a new transaction.ReceiverOptions
ReceiverOptions. requestTimeout(long timeout, java.util.concurrent.TimeUnit units)
Configures the timeout used when awaiting a response from the remote that a request to perform some action such as starting a new transaction.Methods in org.apache.qpid.protonj2.client with parameters of type ReceiverOptions Modifier and Type Method Description protected ReceiverOptions
ReceiverOptions. copyInto(ReceiverOptions other)
Copy all options from thisReceiverOptions
instance into the instance provided.protected StreamReceiverOptions
StreamReceiverOptions. copyInto(ReceiverOptions other)
Receiver
Connection. openDurableReceiver(java.lang.String address, java.lang.String subscriptionName, ReceiverOptions receiverOptions)
Creates a receiver used to consume messages from the given node address and configure it such that the remote create a durable node.Receiver
Session. openDurableReceiver(java.lang.String address, java.lang.String subscriptionName, ReceiverOptions receiverOptions)
Creates a receiver used to consume messages from the given node address and configure it such that the remote create a durable node.Receiver
Connection. openDynamicReceiver(java.util.Map<java.lang.String,java.lang.Object> dynamicNodeProperties, ReceiverOptions receiverOptions)
Creates a dynamic receiver used to consume messages from the given node address.Receiver
Connection. openDynamicReceiver(ReceiverOptions receiverOptions)
Creates a dynamic receiver used to consume messages from a dynamically generated node on the remote..Receiver
Session. openDynamicReceiver(java.util.Map<java.lang.String,java.lang.Object> dynamicNodeProperties, ReceiverOptions receiverOptions)
Creates a dynamic receiver used to consume messages from the given node address.Receiver
Session. openDynamicReceiver(ReceiverOptions receiverOptions)
Creates a dynamic receiver used to consume messages from the given node address.Receiver
Connection. openReceiver(java.lang.String address, ReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given node address.Receiver
Session. openReceiver(java.lang.String address, ReceiverOptions receiverOptions)
Creates a receiver used to consume messages from the given node address.Constructors in org.apache.qpid.protonj2.client with parameters of type ReceiverOptions Constructor Description ReceiverOptions(ReceiverOptions options)
Create a new ReceiverOptions instance that copies the configuration from the specified source options. -
Uses of ReceiverOptions in org.apache.qpid.protonj2.client.impl
Methods in org.apache.qpid.protonj2.client.impl with parameters of type ReceiverOptions Modifier and Type Method Description Receiver
ClientConnection. openDurableReceiver(java.lang.String address, java.lang.String subscriptionName, ReceiverOptions receiverOptions)
Receiver
ClientSession. openDurableReceiver(java.lang.String address, java.lang.String subscriptionName, ReceiverOptions receiverOptions)
Receiver
ClientStreamSession. openDurableReceiver(java.lang.String address, java.lang.String subscriptionName, ReceiverOptions receiverOptions)
Receiver
ClientConnection. openDynamicReceiver(java.util.Map<java.lang.String,java.lang.Object> dynamicNodeProperties, ReceiverOptions receiverOptions)
Receiver
ClientConnection. openDynamicReceiver(ReceiverOptions receiverOptions)
Receiver
ClientSession. openDynamicReceiver(java.util.Map<java.lang.String,java.lang.Object> dynamicNodeProperties, ReceiverOptions receiverOptions)
Receiver
ClientSession. openDynamicReceiver(ReceiverOptions receiverOptions)
Receiver
ClientStreamSession. openDynamicReceiver(java.util.Map<java.lang.String,java.lang.Object> dynamicNodeProperties, ReceiverOptions receiverOptions)
Receiver
ClientStreamSession. openDynamicReceiver(ReceiverOptions receiverOptions)
Receiver
ClientConnection. openReceiver(java.lang.String address, ReceiverOptions receiverOptions)
Receiver
ClientSession. openReceiver(java.lang.String address, ReceiverOptions receiverOptions)
Receiver
ClientStreamSession. openReceiver(java.lang.String address, ReceiverOptions receiverOptions)
-