Uses of Class
io.vertx.amqp.AmqpSenderOptions
-
Packages that use AmqpSenderOptions Package Description io.vertx.amqp io.vertx.reactivex.amqp io.vertx.rxjava3.amqp -
-
Uses of AmqpSenderOptions in io.vertx.amqp
Methods in io.vertx.amqp that return AmqpSenderOptions Modifier and Type Method Description AmqpSenderOptions
AmqpSenderOptions. addCapability(String capability)
Adds a capability to be set on the sender target terminus.AmqpSenderOptions
AmqpSenderOptions. setAutoDrained(boolean autoDrained)
Sets whether the link is automatically marked drained after the send queue drain handler callback returns if the receiving peer requested that credit be drained.AmqpSenderOptions
AmqpSenderOptions. setCapabilities(List<String> capabilities)
Sets the list of capabilities to be set on the sender target terminus.AmqpSenderOptions
AmqpSenderOptions. setDynamic(boolean dynamic)
Sets whether the Target terminus to be used should specify it is 'dynamic', requesting the peer creates a node and names it with a generated address.AmqpSenderOptions
AmqpSenderOptions. setLinkName(String linkName)
Methods in io.vertx.amqp with parameters of type AmqpSenderOptions Modifier and Type Method Description Future<AmqpSender>
AmqpClient. createSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.Future<AmqpSender>
AmqpConnection. createSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.Constructors in io.vertx.amqp with parameters of type AmqpSenderOptions Constructor Description AmqpSenderOptions(AmqpSenderOptions other)
-
Uses of AmqpSenderOptions in io.vertx.reactivex.amqp
Methods in io.vertx.reactivex.amqp with parameters of type AmqpSenderOptions Modifier and Type Method Description Future<AmqpSender>
AmqpClient. createSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.Future<AmqpSender>
AmqpConnection. createSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.Single<AmqpSender>
AmqpClient. rxCreateSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.Single<AmqpSender>
AmqpConnection. rxCreateSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address. -
Uses of AmqpSenderOptions in io.vertx.rxjava3.amqp
Methods in io.vertx.rxjava3.amqp with parameters of type AmqpSenderOptions Modifier and Type Method Description Single<AmqpSender>
AmqpClient. createSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.Single<AmqpSender>
AmqpConnection. createSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.Single<AmqpSender>
AmqpClient. rxCreateSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.Single<AmqpSender>
AmqpConnection. rxCreateSender(String address, AmqpSenderOptions options)
Creates a sender used to send messages to the given address.
-