Package | Description |
---|---|
io.vertx.rxjava.core.eventbus | |
io.vertx.rxjava.ext.unit.collect |
Modifier and Type | Method and Description |
---|---|
<T> MessageConsumer<T> |
EventBus.consumer(String address)
Create a message consumer against the specified 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.endHandler(Handler<Void> endHandler) |
MessageConsumer<T> |
MessageConsumer.exceptionHandler(Handler<Throwable> handler) |
MessageConsumer<T> |
MessageConsumer.handler(Handler<Message<T>> handler) |
<T> MessageConsumer<T> |
EventBus.localConsumer(String address)
Like
EventBus.consumer(java.lang.String) but the address won't be propagated across the cluster. |
<T> MessageConsumer<T> |
EventBus.localConsumer(String address,
Handler<Message<T>> handler)
Like
EventBus.consumer(java.lang.String) but the address won't be propagated across the cluster. |
static <T> MessageConsumer<T> |
MessageConsumer.newInstance(MessageConsumer arg) |
MessageConsumer<T> |
MessageConsumer.pause() |
MessageConsumer<T> |
MessageConsumer.resume() |
MessageConsumer<T> |
MessageConsumer.setMaxBufferedMessages(int maxBufferedMessages)
Set the number of messages this registration will buffer when this stream is paused.
|
Modifier and Type | Method and Description |
---|---|
MessageConsumer |
EventBusCollector.register(String address)
Register the collector as a consumer of the event bus with the specified address.
|
Copyright © 2015. All Rights Reserved.