Uses of Class
io.vertx.core.eventbus.MessageConsumerOptions
-
Packages that use MessageConsumerOptions Package Description io.vertx.core.eventbus io.vertx.reactivex.core.eventbus io.vertx.rxjava3.core.eventbus -
-
Uses of MessageConsumerOptions in io.vertx.core.eventbus
Methods in io.vertx.core.eventbus that return MessageConsumerOptions Modifier and Type Method Description MessageConsumerOptions
MessageConsumerOptions. setAddress(String address)
Set the address the event-bus will register the consumer at.MessageConsumerOptions
MessageConsumerOptions. setLocalOnly(boolean localOnly)
Set whether the consumer is local only.MessageConsumerOptions
MessageConsumerOptions. setMaxBufferedMessages(int maxBufferedMessages)
Set the number of messages this registration will buffer when this stream is paused.Methods in io.vertx.core.eventbus with parameters of type MessageConsumerOptions Modifier and Type Method Description <T> MessageConsumer<T>
EventBus. consumer(MessageConsumerOptions options)
Create a message consumer against the specified options address.<T> MessageConsumer<T>
EventBus. consumer(MessageConsumerOptions options, Handler<Message<T>> handler)
Create a consumer and register it against the specified options address.Constructors in io.vertx.core.eventbus with parameters of type MessageConsumerOptions Constructor Description MessageConsumerOptions(MessageConsumerOptions other)
Copy constructor -
Uses of MessageConsumerOptions in io.vertx.reactivex.core.eventbus
Methods in io.vertx.reactivex.core.eventbus with parameters of type MessageConsumerOptions Modifier and Type Method Description <T> MessageConsumer<T>
EventBus. consumer(MessageConsumerOptions options)
Create a message consumer against the specified options address.<T> MessageConsumer<T>
EventBus. consumer(MessageConsumerOptions options, Handler<Message<T>> handler)
Create a consumer and register it against the specified options address. -
Uses of MessageConsumerOptions in io.vertx.rxjava3.core.eventbus
Methods in io.vertx.rxjava3.core.eventbus with parameters of type MessageConsumerOptions Modifier and Type Method Description <T> MessageConsumer<T>
EventBus. consumer(MessageConsumerOptions options)
Create a message consumer against the specified options address.<T> MessageConsumer<T>
EventBus. consumer(MessageConsumerOptions options, Handler<Message<T>> handler)
Create a consumer and register it against the specified options address.
-