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
Methods in org.apache.qpid.protonj2.client that return SenderOptions Modifier and Type Method Description SenderOptions
SenderOptions. clone()
protected SenderOptions
SenderOptions. copyInto(SenderOptions other)
Copy all options from thisSenderOptions
instance into the instance provided.SenderOptions
SenderOptions. deliveryTagGeneratorSupplier(Supplier<DeliveryTagGenerator> supplier)
Configures aSupplier
which provides unique instances ofDeliveryTagGenerator
objects for anySender
created using these options.protected SenderOptions
SenderOptions. self()
SenderOptions
SenderOptions. sendTimeout(long sendTimeout)
Configures the timeout used when awaiting a send operation to complete.SenderOptions
SenderOptions. sendTimeout(long timeout, 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(String address, SenderOptions senderOptions)
Creates a sender used to send messages to the given node address.Sender
Session. openSender(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(String address, SenderOptions senderOptions)
Sender
ClientSession. openSender(String address, SenderOptions senderOptions)
Sender
ClientStreamSession. openSender(String address, SenderOptions senderOptions)
-