Uses of Class
io.vertx.amqp.AmqpReceiverOptions
-
Packages that use AmqpReceiverOptions Package Description io.vertx.amqp io.vertx.reactivex.amqp io.vertx.rxjava3.amqp -
-
Uses of AmqpReceiverOptions in io.vertx.amqp
Methods in io.vertx.amqp that return AmqpReceiverOptions Modifier and Type Method Description AmqpReceiverOptions
AmqpReceiverOptions. addCapability(String capability)
Adds a capability to be set on the receiver source terminus.AmqpReceiverOptions
AmqpReceiverOptions. setAutoAcknowledgement(boolean auto)
Sets the auto-acknowledgement.AmqpReceiverOptions
AmqpReceiverOptions. setCapabilities(List<String> capabilities)
Sets the list of capabilities to be set on the receiver source terminus.AmqpReceiverOptions
AmqpReceiverOptions. setDurable(boolean durable)
Sets the durability.AmqpReceiverOptions
AmqpReceiverOptions. setDynamic(boolean dynamic)
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.AmqpReceiverOptions
AmqpReceiverOptions. setLinkName(String linkName)
AmqpReceiverOptions
AmqpReceiverOptions. setMaxBufferedMessages(int maxBufferSize)
Sets the max buffered messages.AmqpReceiverOptions
AmqpReceiverOptions. setNoLocal(boolean noLocal)
Sets whether this receiver should not receive messages that were sent using the same underlying connection.AmqpReceiverOptions
AmqpReceiverOptions. setQos(String qos)
Sets the local QOS config.AmqpReceiverOptions
AmqpReceiverOptions. setSelector(String selector)
Sets a message selector string.Methods in io.vertx.amqp with parameters of type AmqpReceiverOptions Modifier and Type Method Description Future<AmqpReceiver>
AmqpClient. createReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.Future<AmqpReceiver>
AmqpConnection. createReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.Constructors in io.vertx.amqp with parameters of type AmqpReceiverOptions Constructor Description AmqpReceiverOptions(AmqpReceiverOptions other)
-
Uses of AmqpReceiverOptions in io.vertx.reactivex.amqp
Methods in io.vertx.reactivex.amqp with parameters of type AmqpReceiverOptions Modifier and Type Method Description Future<AmqpReceiver>
AmqpClient. createReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.Future<AmqpReceiver>
AmqpConnection. createReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.Single<AmqpReceiver>
AmqpClient. rxCreateReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.Single<AmqpReceiver>
AmqpConnection. rxCreateReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address. -
Uses of AmqpReceiverOptions in io.vertx.rxjava3.amqp
Methods in io.vertx.rxjava3.amqp with parameters of type AmqpReceiverOptions Modifier and Type Method Description Single<AmqpReceiver>
AmqpClient. createReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.Single<AmqpReceiver>
AmqpConnection. createReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.Single<AmqpReceiver>
AmqpClient. rxCreateReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.Single<AmqpReceiver>
AmqpConnection. rxCreateReceiver(String address, AmqpReceiverOptions receiverOptions)
Creates a receiver used to consumer messages from the given address.
-