Uses of Class
io.vertx.rxjava.core.eventbus.Message
-
Packages that use Message Package Description io.vertx.rxjava.core.eventbus -
-
Uses of Message in io.vertx.rxjava.core.eventbus
Fields in io.vertx.rxjava.core.eventbus with type parameters of type Message Modifier and Type Field Description static TypeArg<Message>Message. __TYPE_ARGMethods in io.vertx.rxjava.core.eventbus that return Message Modifier and Type Method Description Message<T>DeliveryContext. message()static <T> Message<T>Message. newInstance(Message arg)static <T> Message<T>Message. newInstance(Message arg, TypeArg<T> __typeArg_T)Methods in io.vertx.rxjava.core.eventbus that return types with arguments of type Message Modifier and Type Method Description Pipe<Message<T>>MessageConsumer. pipe()Pause this stream and return a to transfer the elements of this stream to a destination .<R> rx.Single<Message<R>>Message. rxReplyAndRequest(Object message)Reply to this message, specifying areplyHandlerfor the reply - i.e.<R> rx.Single<Message<R>>Message. rxReplyAndRequest(Object message, DeliveryOptions options)LikereplyAndRequest(java.lang.Object, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.eventbus.Message<R>>>)but specifyingoptionsthat can be used to configure the delivery.<T> rx.Single<Message<T>>EventBus. rxRequest(String address, Object message)Sends a message and specify areplyHandlerthat will be called if the recipient subsequently replies to the message.<T> rx.Single<Message<T>>EventBus. rxRequest(String address, Object message, DeliveryOptions options)LikeEventBus.request(java.lang.String, java.lang.Object, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.eventbus.Message<T>>>)but specifyingoptionsthat can be used to configure the delivery.rx.Observable<Message<T>>MessageConsumer. toObservable()Method parameters in io.vertx.rxjava.core.eventbus with type arguments of type Message Modifier and Type Method 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)LikeEventBus.consumer(java.lang.String)but the address won't be propagated across the cluster.voidMessageConsumer. pipeTo(WriteStream<Message<T>> dst)Pipe thisReadStreamto theWriteStream.voidMessageConsumer. pipeTo(WriteStream<Message<T>> dst, Handler<AsyncResult<Void>> handler)Pipe thisReadStreamto theWriteStream.<R> voidMessage. replyAndRequest(Object message, DeliveryOptions options, Handler<AsyncResult<Message<R>>> replyHandler)LikereplyAndRequest(java.lang.Object, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.eventbus.Message<R>>>)but specifyingoptionsthat can be used to configure the delivery.<R> voidMessage. replyAndRequest(Object message, Handler<AsyncResult<Message<R>>> replyHandler)Reply to this message, specifying areplyHandlerfor the reply - i.e.<T> EventBusEventBus. request(String address, Object message, DeliveryOptions options, Handler<AsyncResult<Message<T>>> replyHandler)LikeEventBus.request(java.lang.String, java.lang.Object, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.eventbus.Message<T>>>)but specifyingoptionsthat can be used to configure the delivery.<T> EventBusEventBus. request(String address, Object message, Handler<AsyncResult<Message<T>>> replyHandler)Sends a message and specify areplyHandlerthat will be called if the recipient subsequently replies to the message.rx.Single<Void>MessageConsumer. rxPipeTo(WriteStream<Message<T>> dst)Pipe thisReadStreamto theWriteStream.
-