B C D F H I L M N O R S T U W 
All Classes All Packages

B

blockingScheduler(Vertx) - Static method in class io.vertx.rxjava3.RxHelper
Create a scheduler for a Vertx object, actions can be blocking, they are not executed on Vertx event loop.
blockingScheduler(Vertx, boolean) - Static method in class io.vertx.rxjava3.RxHelper
Create a scheduler for a Vertx object, actions can be blocking, they are not executed on Vertx event loop.
blockingScheduler(WorkerExecutor) - Static method in class io.vertx.rxjava3.RxHelper
Create a scheduler for a WorkerExecutor object, actions are executed on the threads of this executor.

C

CompletableHelper - Class in io.vertx.rxjava3
 
CompletableHelper() - Constructor for class io.vertx.rxjava3.CompletableHelper
 
ContextScheduler - Class in io.vertx.rxjava3
 
ContextScheduler(Context, boolean) - Constructor for class io.vertx.rxjava3.ContextScheduler
 
ContextScheduler(Context, boolean, boolean) - Constructor for class io.vertx.rxjava3.ContextScheduler
 
ContextScheduler(Vertx, boolean) - Constructor for class io.vertx.rxjava3.ContextScheduler
 
ContextScheduler(Vertx, boolean, boolean) - Constructor for class io.vertx.rxjava3.ContextScheduler
 
ContextScheduler(WorkerExecutor) - Constructor for class io.vertx.rxjava3.ContextScheduler
 
ContextScheduler(WorkerExecutor, boolean) - Constructor for class io.vertx.rxjava3.ContextScheduler
 
ContextScheduler.ContextWorker - Class in io.vertx.rxjava3
 
ContextWorker() - Constructor for class io.vertx.rxjava3.ContextScheduler.ContextWorker
 
countActions() - Method in class io.vertx.rxjava3.ContextScheduler.ContextWorker
 
createWorker() - Method in class io.vertx.rxjava3.ContextScheduler
 

D

dispose() - Method in class io.vertx.rxjava3.ContextScheduler.ContextWorker
 

F

FlowableHelper - Class in io.vertx.rxjava3
 
FlowableHelper() - Constructor for class io.vertx.rxjava3.FlowableHelper
 

H

Helper - Class in io.vertx.lang.rxjava3
 
Helper() - Constructor for class io.vertx.lang.rxjava3.Helper
 

I

io.vertx.lang.rxjava3 - package io.vertx.lang.rxjava3
 
io.vertx.rxjava3 - package io.vertx.rxjava3
 
isDisposed() - Method in class io.vertx.rxjava3.ContextScheduler.ContextWorker
 

L

loadGenerators(ProcessingEnvironment) - Method in class io.vertx.lang.rxjava3.RxJava3GeneratorLoader
 

M

MaybeHelper - Class in io.vertx.rxjava3
 
MaybeHelper() - Constructor for class io.vertx.rxjava3.MaybeHelper
 

N

NULL_OBSERVER - Static variable in class io.vertx.rxjava3.SingleHelper
 
nullObserver() - Static method in class io.vertx.rxjava3.CompletableHelper
 
nullObserver() - Static method in class io.vertx.rxjava3.MaybeHelper
 
nullObserver() - Static method in class io.vertx.rxjava3.SingleHelper
 

O

ObservableHelper - Class in io.vertx.rxjava3
 
ObservableHelper() - Constructor for class io.vertx.rxjava3.ObservableHelper
 
onError(Consumer<? super Throwable>) - Method in interface io.vertx.rxjava3.WriteStreamObserver
Sets the handler to invoke if the Observable that was subscribed to terminates with an error.
onError(Consumer<? super Throwable>) - Method in interface io.vertx.rxjava3.WriteStreamSubscriber
Sets the handler to invoke if the Flowable that was subscribed to terminates with an error.
onWriteStreamEnd(Action) - Method in interface io.vertx.rxjava3.WriteStreamObserver
Sets the handler to invoke when the adapted WriteStream ends successfully.
onWriteStreamEnd(Action) - Method in interface io.vertx.rxjava3.WriteStreamSubscriber
Sets the handler to invoke when the adapted WriteStream ends successfully.
onWriteStreamEndError(Consumer<? super Throwable>) - Method in interface io.vertx.rxjava3.WriteStreamObserver
Sets the handler to invoke when the adapted WriteStream ends with an error.
onWriteStreamEndError(Consumer<? super Throwable>) - Method in interface io.vertx.rxjava3.WriteStreamSubscriber
Sets the handler to invoke when the adapted WriteStream ends with an error.
onWriteStreamError(Consumer<? super Throwable>) - Method in interface io.vertx.rxjava3.WriteStreamObserver
Sets the handler to invoke if the adapted WriteStream fails.
onWriteStreamError(Consumer<? super Throwable>) - Method in interface io.vertx.rxjava3.WriteStreamSubscriber
Sets the handler to invoke if the adapted WriteStream fails.

R

RxHelper - Class in io.vertx.rxjava3
 
RxHelper() - Constructor for class io.vertx.rxjava3.RxHelper
 
RxJava3GeneratorLoader - Class in io.vertx.lang.rxjava3
 
RxJava3GeneratorLoader() - Constructor for class io.vertx.lang.rxjava3.RxJava3GeneratorLoader
 

S

schedule(Runnable) - Method in class io.vertx.rxjava3.ContextScheduler.ContextWorker
 
schedule(Runnable, long, TimeUnit) - Method in class io.vertx.rxjava3.ContextScheduler.ContextWorker
 
schedulePeriodically(Runnable, long, long, TimeUnit) - Method in class io.vertx.rxjava3.ContextScheduler.ContextWorker
 
scheduler(Context) - Static method in class io.vertx.rxjava3.RxHelper
Create a scheduler for a Context, actions are executed on the event loop of this context.
scheduler(Vertx) - Static method in class io.vertx.rxjava3.RxHelper
Create a scheduler for a Vertx object, actions are executed on the event loop.
SingleHelper - Class in io.vertx.rxjava3
 
SingleHelper() - Constructor for class io.vertx.rxjava3.SingleHelper
 

T

toCompletable(Consumer<Handler<AsyncResult<Void>>>) - Static method in class io.vertx.rxjava3.CompletableHelper
Returns a Completable that, when subscribed, uses the provided handler to adapt a callback-based asynchronous method.
toFlowable(ReadStream<T>) - Static method in class io.vertx.rxjava3.FlowableHelper
Adapts a Vert.x ReadStream to an RxJava Flowable.
toFlowable(ReadStream<T>, long) - Static method in class io.vertx.rxjava3.FlowableHelper
Adapts a Vert.x ReadStream to an RxJava Flowable.
toFlowable(ReadStream<T>, Function<T, U>) - Static method in class io.vertx.rxjava3.FlowableHelper
Like FlowableHelper.toFlowable(ReadStream) but with a mapping function
toFuture(Completable) - Static method in class io.vertx.rxjava3.CompletableHelper
Adapts an RxJava2 Completable<T> to a Vert.x .
toFuture(Maybe<T>) - Static method in class io.vertx.rxjava3.MaybeHelper
Adapts an RxJava2 Maybe<T> to a Vert.x Future.
toFuture(Maybe<T>, Function<T, U>) - Static method in class io.vertx.rxjava3.MaybeHelper
Like MaybeHelper.toFuture(Maybe) but with an adapter of the result.
toFuture(Single<T>) - Static method in class io.vertx.rxjava3.SingleHelper
Adapts an RxJava2 Single<T> to a Vert.x Future.
toFuture(Single<T>, Function<T, U>) - Static method in class io.vertx.rxjava3.SingleHelper
Like SingleHelper.toFuture(Single) but with an adapter of the result.
toMaybe(Consumer<Handler<AsyncResult<T>>>) - Static method in class io.vertx.rxjava3.MaybeHelper
Returns a Maybe that, when subscribed, uses the provided handler to adapt a callback-based asynchronous method.
toObservable(ReadStream<T>) - Static method in class io.vertx.rxjava3.ObservableHelper
Adapts a Vert.x to an RxJava .
toObservable(ReadStream<T>, Function<T, U>) - Static method in class io.vertx.rxjava3.ObservableHelper
Like ObservableHelper.toObservable(ReadStream) but with a mapping function
toObserver(Handler<AsyncResult<T>>) - Static method in class io.vertx.rxjava3.CompletableHelper
Adapts an Vert.x Handler<AsyncResult<T>> to an RxJava2 SingleObserver.
toObserver(Handler<AsyncResult<T>>) - Static method in class io.vertx.rxjava3.MaybeHelper
Adapts an Vert.x Handler<AsyncResult<T>> to an RxJava2 MaybeObserver.
toObserver(Handler<AsyncResult<T>>) - Static method in class io.vertx.rxjava3.SingleHelper
Adapts an Vert.x Handler<AsyncResult<T>> to an RxJava2 SingleObserver.
toObserver(WriteStream<T>) - Static method in class io.vertx.rxjava3.RxHelper
Adapts a Vert.x WriteStream to an RxJava Observer.
toObserver(WriteStream<T>, Function<R, T>) - Static method in class io.vertx.rxjava3.RxHelper
Like RxHelper.toObserver(WriteStream), except the provided mapping function is applied to each Observable item.
toReadStream(Flowable<T>) - Static method in class io.vertx.rxjava3.FlowableHelper
Adapts an RxJava Flowable to a Vert.x ReadStream.
toReadStream(Observable<T>) - Static method in class io.vertx.rxjava3.ObservableHelper
Adapts an RxJava Observable to a Vert.x ReadStream.
toSingle(Consumer<Handler<AsyncResult<T>>>) - Static method in class io.vertx.rxjava3.SingleHelper
Returns a Single that, when subscribed, uses the provided handler to adapt a callback-based asynchronous method.
toSubscriber(WriteStream<T>) - Static method in class io.vertx.rxjava3.RxHelper
Adapts a Vert.x WriteStream to an RxJava Subscriber.
toSubscriber(WriteStream<T>, Function<R, T>) - Static method in class io.vertx.rxjava3.RxHelper
Like RxHelper.toSubscriber(WriteStream), except the provided mapping function is applied to each Flowable item.

U

unmarshaller(TypeReference<T>) - Static method in class io.vertx.rxjava3.FlowableHelper
 
unmarshaller(TypeReference<T>) - Static method in class io.vertx.rxjava3.MaybeHelper
 
unmarshaller(TypeReference<T>) - Static method in class io.vertx.rxjava3.ObservableHelper
 
unmarshaller(TypeReference<T>) - Static method in class io.vertx.rxjava3.SingleHelper
 
unmarshaller(TypeReference<T>, ObjectCodec) - Static method in class io.vertx.rxjava3.FlowableHelper
 
unmarshaller(TypeReference<T>, ObjectCodec) - Static method in class io.vertx.rxjava3.MaybeHelper
 
unmarshaller(TypeReference<T>, ObjectCodec) - Static method in class io.vertx.rxjava3.ObservableHelper
 
unmarshaller(TypeReference<T>, ObjectCodec) - Static method in class io.vertx.rxjava3.SingleHelper
 
unmarshaller(Class<T>) - Static method in class io.vertx.rxjava3.FlowableHelper
 
unmarshaller(Class<T>) - Static method in class io.vertx.rxjava3.MaybeHelper
 
unmarshaller(Class<T>) - Static method in class io.vertx.rxjava3.ObservableHelper
 
unmarshaller(Class<T>) - Static method in class io.vertx.rxjava3.SingleHelper
 
unmarshaller(Class<T>, ObjectCodec) - Static method in class io.vertx.rxjava3.FlowableHelper
 
unmarshaller(Class<T>, ObjectCodec) - Static method in class io.vertx.rxjava3.MaybeHelper
 
unmarshaller(Class<T>, ObjectCodec) - Static method in class io.vertx.rxjava3.ObservableHelper
 
unmarshaller(Class<T>, ObjectCodec) - Static method in class io.vertx.rxjava3.SingleHelper
 
unwrap(Class<?>) - Static method in class io.vertx.lang.rxjava3.Helper
Unwrap the type used in RxJava.

W

WriteStreamObserver<R> - Interface in io.vertx.rxjava3
A WriteStream to Observer adapter.
WriteStreamSubscriber<R> - Interface in io.vertx.rxjava3
A WriteStream to Subscriber adapter.
B C D F H I L M N O R S T U W 
All Classes All Packages