public class RxHelper extends Object
Constructor and Description |
---|
RxHelper() |
Modifier and Type | Method and Description |
---|---|
static rx.Scheduler |
blockingScheduler(Vertx vertx)
Create a scheduler for a
Vertx object, actions can be blocking, they are not executed
on Vertx event loop. |
static rx.Scheduler |
blockingScheduler(Vertx vertx,
boolean ordered)
Create a scheduler for a
Vertx object, actions can be blocking, they are not executed
on Vertx event loop. |
static rx.Observable<String> |
deployVerticle(Vertx vertx,
Verticle verticle)
Deploy a verticle you have created yourself, using an
RxJava vertx instance.
|
static rx.Observable<String> |
deployVerticle(Vertx vertx,
Verticle verticle,
DeploymentOptions options)
Like
deployVerticle(Vertx, Verticle) , but DeploymentOptions are provided to configure the
deployment. |
static rx.Scheduler |
scheduler(Context context)
Create a scheduler for a
Context , actions are executed on the event loop of this context. |
static rx.Scheduler |
scheduler(Vertx vertx)
Create a scheduler for a
Vertx object, actions are executed on the event loop of the current context. |
static rx.Scheduler |
scheduler(WorkerExecutor executor)
Create a scheduler for a
WorkerExecutor object, actions are executed on the threads of this executor. |
static rx.plugins.RxJavaSchedulersHook |
schedulerHook(Context context)
Create a scheduler hook for a
Context object. |
static rx.plugins.RxJavaSchedulersHook |
schedulerHook(Vertx vertx)
Create a scheduler hook for a
Vertx object. |
static <T> rx.Observable.Operator<T,Buffer> |
unmarshaller(Class<T> mappedType)
Returns a json unmarshaller for the specified java type as a
Observable.Operator instance.
The marshaller can be used with the Observable.lift(rx.Observable.Operator) method to transform
a Observable<Buffer> into a Observable<T>.
The unmarshaller buffers the content until onComplete is called, then unmarshalling happens.
Note that the returned observable will emit at most a single object. |
public static rx.plugins.RxJavaSchedulersHook schedulerHook(Vertx vertx)
Vertx
object.vertx
- the vertx objectpublic static rx.plugins.RxJavaSchedulersHook schedulerHook(Context context)
Context
object.context
- the context objectpublic static rx.Scheduler scheduler(Vertx vertx)
Vertx
object, actions are executed on the event loop of the current context.vertx
- the vertx objectpublic static rx.Scheduler scheduler(WorkerExecutor executor)
WorkerExecutor
object, actions are executed on the threads of this executor.executor
- the worker executor objectpublic static rx.Scheduler scheduler(Context context)
Context
, actions are executed on the event loop of this context.context
- the context objectpublic static rx.Scheduler blockingScheduler(Vertx vertx)
Vertx
object, actions can be blocking, they are not executed
on Vertx event loop.vertx
- the vertx objectpublic static rx.Scheduler blockingScheduler(Vertx vertx, boolean ordered)
Vertx
object, actions can be blocking, they are not executed
on Vertx event loop.vertx
- the vertx objectordered
- if true then if when tasks are scheduled several times on the same context, the executions
for that context will be executed serially, not in parallel. if false then they will be no ordering
guaranteespublic static <T> rx.Observable.Operator<T,Buffer> unmarshaller(Class<T> mappedType)
Observable.Operator
instance.
The marshaller can be used with the Observable.lift(rx.Observable.Operator)
method to transform
a Observable<Buffer> into a Observable<T>.
The unmarshaller buffers the content until onComplete is called, then unmarshalling happens.
Note that the returned observable will emit at most a single object.mappedType
- the type to unmarshallpublic static rx.Observable<String> deployVerticle(Vertx vertx, Verticle verticle)
vertx
- the vertx instanceverticle
- the verticle instance to deploypublic static rx.Observable<String> deployVerticle(Vertx vertx, Verticle verticle, DeploymentOptions options)
deployVerticle(Vertx, Verticle)
, but DeploymentOptions
are provided to configure the
deployment.vertx
- the vertx instanceverticle
- the verticle instance to deployoptions
- the deployment options.Copyright © 2020 Eclipse. All rights reserved.