Package | Description |
---|---|
io.vertx.core.eventbus | |
io.vertx.ext.unit.collect | |
io.vertx.reactivex.core.eventbus | |
io.vertx.rxjava.core.eventbus | |
io.vertx.serviceproxy |
Modifier and Type | Method and Description |
---|---|
Message<T> |
DeliveryContext.message() |
Modifier and Type | Method and Description |
---|---|
<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)
Like
EventBus.consumer(String, Handler) but the address won't be propagated across the cluster. |
<R> void |
Message.reply(Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<R>>> replyHandler)
The same as
reply(R message, DeliveryOptions) but you can specify handler for the reply - i.e. |
<R> void |
Message.reply(Object message,
Handler<AsyncResult<Message<R>>> replyHandler)
The same as
reply(R message) but you can specify handler for the reply - i.e. |
<T> EventBus |
EventBus.send(String address,
Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<T>>> replyHandler)
Like
EventBus.send(String, Object, DeliveryOptions) but specifying a replyHandler that will be called if the recipient
subsequently replies to the message. |
<T> EventBus |
EventBus.send(String address,
Object message,
Handler<AsyncResult<Message<T>>> replyHandler)
Like
EventBus.send(String, Object) but specifying a replyHandler that will be called if the recipient
subsequently replies to the message. |
<R> MessageProducer<T> |
MessageProducer.send(T message,
Handler<AsyncResult<Message<R>>> replyHandler)
Like
MessageProducer.send(Object) but specifying a replyHandler that will be called if the recipient
subsequently replies to the message. |
Modifier and Type | Method and Description |
---|---|
Handler<Message<JsonObject>> |
EventBusCollector.asMessageHandler() |
Modifier and Type | Method and Description |
---|---|
Message |
Message.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static <T> Message<T> |
Message.newInstance(Message arg) |
static <T> Message<T> |
Message.newInstance(Message arg,
io.vertx.lang.rx.TypeArg<T> __typeArg_T) |
Constructor and Description |
---|
Message(Message delegate) |
Message(Message delegate,
io.vertx.lang.rx.TypeArg<T> typeArg_0) |
Modifier and Type | Method and Description |
---|---|
Message |
Message.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static <T> Message<T> |
Message.newInstance(Message arg) |
static <T> Message<T> |
Message.newInstance(Message arg,
io.vertx.lang.rx.TypeArg<T> __typeArg_T) |
Constructor and Description |
---|
Message(Message delegate) |
Message(Message delegate,
io.vertx.lang.rx.TypeArg<T> typeArg_0) |
Modifier and Type | Method and Description |
---|---|
Future<Message<JsonObject>> |
ServiceJWTInterceptor.apply(Message<JsonObject> msg) |
Modifier and Type | Method and Description |
---|---|
Future<Message<JsonObject>> |
ServiceJWTInterceptor.apply(Message<JsonObject> msg) |
static <T> Handler<AsyncResult<T>> |
HelperUtils.createHandler(Message msg) |
static Handler<AsyncResult<List<Character>>> |
HelperUtils.createListCharHandler(Message msg) |
static <T> Handler<AsyncResult<List<T>>> |
HelperUtils.createListHandler(Message msg) |
static Handler<AsyncResult<Set<Character>>> |
HelperUtils.createSetCharHandler(Message msg) |
static <T> Handler<AsyncResult<Set<T>>> |
HelperUtils.createSetHandler(Message msg) |
Copyright © 2018 Eclipse. All rights reserved.