Uses of Class
org.apache.qpid.protonj2.client.SenderOptions
-
Packages that use SenderOptions Package Description org.apache.qpid.protonj2.client org.apache.qpid.protonj2.client.impl -
-
Uses of SenderOptions in org.apache.qpid.protonj2.client
Subclasses of SenderOptions in org.apache.qpid.protonj2.client Modifier and Type Class Description class
StreamSenderOptions
Options class that controls various aspects of aStreamSenderMessage
instance and how a streamed message transfer is written.Methods in org.apache.qpid.protonj2.client that return SenderOptions Modifier and Type Method Description SenderOptions
SenderOptions. autoSettle(boolean autoSettle)
Sets whether sent deliveries should be automatically locally-settled once they have become remotely-settled by the receiving peer.SenderOptions
SenderOptions. clone()
SenderOptions
SenderOptions. closeTimeout(long closeTimeout)
Configures the timeout used when awaiting a response from the remote that a request to close theSender
link.SenderOptions
SenderOptions. closeTimeout(long timeout, java.util.concurrent.TimeUnit units)
Configures the timeout used when awaiting a response from the remote that a request to close theSender
link.protected SenderOptions
SenderOptions. copyInto(SenderOptions other)
Copy all options from thisSenderOptions
instance into the instance provided.SenderOptions
SenderOptions. deliveryMode(DeliveryMode deliveryMode)
Sets theDeliveryMode
value to assign to newly createdSender
instances.SenderOptions
SenderOptions. desiredCapabilities(java.lang.String... desiredCapabilities)
SenderOptions
SenderOptions. linkName(java.lang.String linkName)
Configures the link name to use when creating a givenSender
instance.SenderOptions
SenderOptions. offeredCapabilities(java.lang.String... offeredCapabilities)
SenderOptions
SenderOptions. openTimeout(long openTimeout)
Configures the timeout used when awaiting a response from the remote that a request to open aSender
has been honored.SenderOptions
SenderOptions. openTimeout(long timeout, java.util.concurrent.TimeUnit units)
Configures the timeout used when awaiting a response from the remote that a request to open aSender
has been honored.SenderOptions
SenderOptions. properties(java.util.Map<java.lang.String,java.lang.Object> properties)
SenderOptions
SenderOptions. 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.SenderOptions
SenderOptions. 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.SenderOptions
SenderOptions. sendTimeout(long sendTimeout)
Configures the timeout used when awaiting a send operation to complete.SenderOptions
SenderOptions. sendTimeout(long timeout, java.util.concurrent.TimeUnit units)
Configures the timeout used when awaiting a send operation to complete.Methods in org.apache.qpid.protonj2.client with parameters of type SenderOptions Modifier and Type Method Description protected SenderOptions
SenderOptions. copyInto(SenderOptions other)
Copy all options from thisSenderOptions
instance into the instance provided.Sender
Connection. openAnonymousSender(SenderOptions senderOptions)
Creates a sender that is established to the 'anonymous relay' and as such each message that is sent using this sender must specify an address in its destination address field.Sender
Session. openAnonymousSender(SenderOptions senderOptions)
Creates a sender that is established to the 'anonymous relay' and as such each message that is sent using this sender must specify an address in its destination address field.Sender
Connection. openSender(java.lang.String address, SenderOptions senderOptions)
Creates a sender used to send messages to the given node address.Sender
Session. openSender(java.lang.String address, SenderOptions senderOptions)
Creates a sender used to send messages to the given node address.Constructors in org.apache.qpid.protonj2.client with parameters of type SenderOptions Constructor Description SenderOptions(SenderOptions options)
Create a new SenderOptions instance that copies the configuration from the specified source options. -
Uses of SenderOptions in org.apache.qpid.protonj2.client.impl
Methods in org.apache.qpid.protonj2.client.impl with parameters of type SenderOptions Modifier and Type Method Description Sender
ClientConnection. openAnonymousSender(SenderOptions senderOptions)
Sender
ClientSession. openAnonymousSender(SenderOptions senderOptions)
Sender
ClientStreamSession. openAnonymousSender(SenderOptions senderOptions)
Sender
ClientConnection. openSender(java.lang.String address, SenderOptions senderOptions)
Sender
ClientSession. openSender(java.lang.String address, SenderOptions senderOptions)
Sender
ClientStreamSession. openSender(java.lang.String address, SenderOptions senderOptions)
-