Class WorkerExecutor
- java.lang.Object
-
- io.vertx.reactivex.core.WorkerExecutor
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<WorkerExecutor>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description WorkerExecutor(WorkerExecutor delegate)WorkerExecutor(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()Close the executor.voidclose(Handler<AsyncResult<Void>> handler)Close the executor.booleanequals(Object o)<T> voidexecuteBlocking(Handler<Promise<T>> blockingCodeHandler)Deprecated.<T> voidexecuteBlocking(Handler<Promise<T>> blockingCodeHandler, boolean ordered)Deprecated.<T> voidexecuteBlocking(Handler<Promise<T>> blockingCodeHandler, boolean ordered, Handler<AsyncResult<T>> resultHandler)Deprecated.<T> voidexecuteBlocking(Handler<Promise<T>> blockingCodeHandler, Handler<AsyncResult<T>> resultHandler)Deprecated.<T> Future<T>executeBlocking(Callable<T> blockingCodeHandler)<T> Future<T>executeBlocking(Callable<T> blockingCodeHandler, boolean ordered)Safely execute some blocking code.WorkerExecutorgetDelegate()inthashCode()booleanisMetricsEnabled()Whether the metrics are enabled for this measured objectstatic WorkerExecutornewInstance(WorkerExecutor arg)io.reactivex.CompletablerxClose()Close the executor.<T> io.reactivex.Maybe<T>rxExecuteBlocking(Handler<Promise<T>> blockingCodeHandler)Deprecated.<T> io.reactivex.Maybe<T>rxExecuteBlocking(Handler<Promise<T>> blockingCodeHandler, boolean ordered)Deprecated.StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<WorkerExecutor> __TYPE_ARG
-
-
Constructor Detail
-
WorkerExecutor
public WorkerExecutor(WorkerExecutor delegate)
-
WorkerExecutor
public WorkerExecutor(Object delegate)
-
-
Method Detail
-
getDelegate
public WorkerExecutor getDelegate()
- Specified by:
getDelegatein interfaceMeasured
-
isMetricsEnabled
public boolean isMetricsEnabled()
Whether the metrics are enabled for this measured object- Specified by:
isMetricsEnabledin interfaceMeasured- Returns:
trueif metrics are enabled
-
executeBlocking
@Deprecated public <T> void executeBlocking(Handler<Promise<T>> blockingCodeHandler, boolean ordered, Handler<AsyncResult<T>> resultHandler)
Deprecated.Safely execute some blocking code.Executes the blocking code in the handler
blockingCodeHandlerusing a thread from the worker pool.The returned future will be completed with the result on the original context (i.e. on the original event loop of the caller) or failed when the handler throws an exception.
A
Futureinstance is passed intoblockingCodeHandler. When the blocking code successfully completes, the handler should call thePromise.complete(T)orPromise.complete(T)method, or thePromise.fail(java.lang.Throwable)method if it failed.In the
blockingCodeHandlerthe current context remains the original context and therefore any task scheduled in theblockingCodeHandlerwill be executed on this context and not on the worker thread.- Parameters:
blockingCodeHandler- handler representing the blocking code to runordered- if true then if executeBlocking is called 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 guaranteesresultHandler- handler that will be called when the blocking code is complete
-
executeBlocking
@Deprecated public <T> void executeBlocking(Handler<Promise<T>> blockingCodeHandler, boolean ordered)
Deprecated.Safely execute some blocking code.Executes the blocking code in the handler
blockingCodeHandlerusing a thread from the worker pool.The returned future will be completed with the result on the original context (i.e. on the original event loop of the caller) or failed when the handler throws an exception.
A
Futureinstance is passed intoblockingCodeHandler. When the blocking code successfully completes, the handler should call thePromise.complete(T)orPromise.complete(T)method, or thePromise.fail(java.lang.Throwable)method if it failed.In the
blockingCodeHandlerthe current context remains the original context and therefore any task scheduled in theblockingCodeHandlerwill be executed on this context and not on the worker thread.- Parameters:
blockingCodeHandler- handler representing the blocking code to runordered- if true then if executeBlocking is called 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 guarantees
-
rxExecuteBlocking
@Deprecated public <T> io.reactivex.Maybe<T> rxExecuteBlocking(Handler<Promise<T>> blockingCodeHandler, boolean ordered)
Deprecated.Safely execute some blocking code.Executes the blocking code in the handler
blockingCodeHandlerusing a thread from the worker pool.The returned future will be completed with the result on the original context (i.e. on the original event loop of the caller) or failed when the handler throws an exception.
A
Futureinstance is passed intoblockingCodeHandler. When the blocking code successfully completes, the handler should call thePromise.complete(T)orPromise.complete(T)method, or thePromise.fail(java.lang.Throwable)method if it failed.In the
blockingCodeHandlerthe current context remains the original context and therefore any task scheduled in theblockingCodeHandlerwill be executed on this context and not on the worker thread.- Parameters:
blockingCodeHandler- handler representing the blocking code to runordered- if true then if executeBlocking is called 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 guarantees- Returns:
-
executeBlocking
@Deprecated public <T> void executeBlocking(Handler<Promise<T>> blockingCodeHandler, Handler<AsyncResult<T>> resultHandler)
Deprecated.LikeexecuteBlocking(io.vertx.core.Handler<io.vertx.reactivex.core.Promise<T>>, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)called with ordered = true.- Parameters:
blockingCodeHandler-resultHandler-
-
executeBlocking
@Deprecated public <T> void executeBlocking(Handler<Promise<T>> blockingCodeHandler)
Deprecated.LikeexecuteBlocking(io.vertx.core.Handler<io.vertx.reactivex.core.Promise<T>>, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)called with ordered = true.- Parameters:
blockingCodeHandler-
-
rxExecuteBlocking
@Deprecated public <T> io.reactivex.Maybe<T> rxExecuteBlocking(Handler<Promise<T>> blockingCodeHandler)
Deprecated.LikeexecuteBlocking(io.vertx.core.Handler<io.vertx.reactivex.core.Promise<T>>, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)called with ordered = true.- Parameters:
blockingCodeHandler-- Returns:
-
close
public void close(Handler<AsyncResult<Void>> handler)
Close the executor.- Parameters:
handler- the completion handler
-
close
public void close()
Close the executor.
-
rxClose
public io.reactivex.Completable rxClose()
Close the executor.- Returns:
-
executeBlocking
public <T> Future<T> executeBlocking(Callable<T> blockingCodeHandler, boolean ordered)
Safely execute some blocking code.Executes the blocking code in the handler
blockingCodeHandlerusing a thread from the worker pool.The returned future will be completed with the result on the original context (i.e. on the original event loop of the caller) or failed when the handler throws an exception.
In the
blockingCodeHandlerthe current context remains the original context and therefore any task scheduled in theblockingCodeHandlerwill be executed on this context and not on the worker thread.- Parameters:
blockingCodeHandler- handler representing the blocking code to runordered- if true then if executeBlocking is called 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 guarantees- Returns:
- a future notified with the result
-
executeBlocking
public <T> Future<T> executeBlocking(Callable<T> blockingCodeHandler)
LikeexecuteBlocking(io.vertx.core.Handler<io.vertx.reactivex.core.Promise<T>>, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)called with ordered = true.- Parameters:
blockingCodeHandler-- Returns:
-
newInstance
public static WorkerExecutor newInstance(WorkerExecutor arg)
-
-