Uses of Interface
io.vertx.core.eventbus.Message
-
Packages that use Message Package Description io.vertx.core.eventbus io.vertx.core.spi.metrics -
-
Uses of Message in io.vertx.core.eventbus
Methods in io.vertx.core.eventbus that return Message Modifier and Type Method Description Message<T>DeliveryContext. message()Methods in io.vertx.core.eventbus that return types with arguments of type Message Modifier and Type Method Description default <R> Future<Message<R>>Message. replyAndRequest(Object message)Reply to this message, specifying areplyHandlerfor the reply - i.e.<R> Future<Message<R>>Message. replyAndRequest(Object message, DeliveryOptions options)LikereplyAndRequest(Object)but specifyingoptionsthat can be used to configure the delivery.default <T> Future<Message<T>>EventBus. request(String address, Object message)Sends a message and specify areplyHandlerthat will be called if the recipient subsequently replies to the message.<T> Future<Message<T>>EventBus. request(String address, Object message, DeliveryOptions options)LikeEventBus.request(String, Object)but specifyingoptionsthat can be used to configure the delivery.Method parameters in io.vertx.core.eventbus with type arguments of type Message Modifier and Type Method Description <T> MessageConsumer<T>EventBus. consumer(MessageConsumerOptions options, Handler<Message<T>> handler)Create a consumer and register it against the specified options address.<T> MessageConsumer<T>EventBus. consumer(String address, Handler<Message<T>> handler)Create a consumer and register it against the specified address.MessageConsumer<T>MessageConsumer. handler(Handler<Message<T>> handler)<T> MessageConsumer<T>EventBus. localConsumer(String address, Handler<Message<T>> handler)LikeEventBus.consumer(String, Handler)but the address won't be propagated across the cluster. -
Uses of Message in io.vertx.core.spi.metrics
Methods in io.vertx.core.spi.metrics with parameters of type Message Modifier and Type Method Description default voidEventBusMetrics. discardMessage(H handler, boolean local, Message<?> msg)Discard a message.
-