| Package | Description |
|---|---|
| io.vertx.core |
= Vert.x Core Manual
:toc: left
At the heart of Vert.x is a set of Java APIs that we call *Vert.x Core*
https://github.com/eclipse/vert.x[Repository].
|
| io.vertx.reactivex |
= Vert.x RxJava
:toc: left
== Vert.x API for RxJava2
https://github.com/ReactiveX/RxJava[RxJava] is a popular library for composing asynchronous and event based programs using
observable sequences for the Java VM.
|
| Modifier and Type | Method and Description |
|---|---|
WorkerExecutor |
Vertx.createSharedWorkerExecutor(String name)
Like
Vertx.createSharedWorkerExecutor(String, int) but with the VertxOptions.setWorkerPoolSize(int) poolSize. |
WorkerExecutor |
Vertx.createSharedWorkerExecutor(String name,
int poolSize)
Like
Vertx.createSharedWorkerExecutor(String, int, long) but with the VertxOptions.setMaxWorkerExecuteTime(long) maxExecuteTime. |
WorkerExecutor |
Vertx.createSharedWorkerExecutor(String name,
int poolSize,
long maxExecuteTime)
Create a named worker executor, the executor should be closed when it's not needed anymore to release
resources.
This method can be called mutiple times with the same
name. |
| Modifier and Type | Method and Description |
|---|---|
static io.reactivex.Scheduler |
RxHelper.blockingScheduler(WorkerExecutor executor)
Create a scheduler for a
WorkerExecutor object, actions are executed on the threads of this executor. |
| Constructor and Description |
|---|
ContextScheduler(WorkerExecutor workerExecutor) |
ContextScheduler(WorkerExecutor workerExecutor,
boolean ordered) |
Copyright © 2018 Eclipse. All rights reserved.