Package io.vertx.reactivex
Class CompletableHelper
- java.lang.Object
-
- io.vertx.reactivex.CompletableHelper
-
public class CompletableHelper extends Object
- Author:
- Julien Viet
-
-
Constructor Summary
Constructors Constructor Description CompletableHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Completable
toCompletable(java.util.function.Consumer<Handler<AsyncResult<Void>>> handler)
Returns aCompletable
that, when subscribed, uses the providedhandler
to adapt a callback-based asynchronous method.static <T> Future<Void>
toFuture(Completable maybe)
static <T> CompletableObserver
toObserver(Handler<AsyncResult<T>> handler)
Adapts an Vert.xHandler<AsyncResult<T>>
to an RxJava2SingleObserver
.
-
-
-
Method Detail
-
toCompletable
public static Completable toCompletable(java.util.function.Consumer<Handler<AsyncResult<Void>>> handler)
Returns aCompletable
that, when subscribed, uses the providedhandler
to adapt a callback-based asynchronous method.For example:
io.vertx.core.Vertx vertx = Vertx.vertx(); // ... later Completable undeploy = CompletableHelper.toCompletable(handler -> vertx.undeploy(deploymentId, handler));
This is useful when using RxJava without the Vert.x Rxified API or your own asynchronous methods.
- Parameters:
handler
- the code executed when the returnedCompletable
is subscribed
-
toObserver
public static <T> CompletableObserver toObserver(Handler<AsyncResult<T>> handler)
Adapts an Vert.xHandler<AsyncResult<T>>
to an RxJava2SingleObserver
.The returned observer can be subscribed to an
Single.subscribe(SingleObserver)
.- Parameters:
handler
- the handler to adapt- Returns:
- the observer
-
toFuture
public static <T> Future<Void> toFuture(Completable maybe)
Adapts an RxJava2Completable<T>
to a Vert.x
.The completable will be immediately subscribed and the returned future will be updated with the result of the single.
- Parameters:
maybe
- the single to adapt- Returns:
- the future
-
-