Class WorkerExecutor
- java.lang.Object
-
- io.vertx.rxjava3.core.WorkerExecutor
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.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 Modifier and Type Method Description Completable
close()
Close the executor.boolean
equals(Object o)
<T> Single<T>
executeBlocking(Callable<T> blockingCodeHandler)
LikeexecuteBlocking(java.util.concurrent.Callable<T>, boolean)
called with ordered = true.<T> Maybe<T>
executeBlocking(Callable<T> blockingCodeHandler, boolean ordered)
Safely execute some blocking code.WorkerExecutor
getDelegate()
int
hashCode()
boolean
isMetricsEnabled()
Whether the metrics are enabled for this measured objectstatic WorkerExecutor
newInstance(WorkerExecutor arg)
Completable
rxClose()
Close the executor.<T> Single<T>
rxExecuteBlocking(Callable<T> blockingCodeHandler)
LikeexecuteBlocking(java.util.concurrent.Callable<T>, boolean)
called with ordered = true.<T> Maybe<T>
rxExecuteBlocking(Callable<T> blockingCodeHandler, boolean ordered)
Safely execute some blocking code.String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<WorkerExecutor> __TYPE_ARG
-
-
Constructor Detail
-
WorkerExecutor
public WorkerExecutor(WorkerExecutor delegate)
-
WorkerExecutor
public WorkerExecutor(Object delegate)
-
-
Method Detail
-
getDelegate
public WorkerExecutor getDelegate()
- Specified by:
getDelegate
in interfaceMeasured
-
isMetricsEnabled
public boolean isMetricsEnabled()
Whether the metrics are enabled for this measured object- Specified by:
isMetricsEnabled
in interfaceMeasured
- Returns:
true
if metrics are enabled
-
close
public Completable close()
Close the executor.- Returns:
-
rxClose
public Completable rxClose()
Close the executor.- Returns:
-
executeBlocking
public <T> Maybe<T> executeBlocking(Callable<T> blockingCodeHandler, boolean ordered)
Safely execute some blocking code.Executes the blocking code in the handler
blockingCodeHandler
using 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
blockingCodeHandler
the current context remains the original context and therefore any task scheduled in theblockingCodeHandler
will 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
-
rxExecuteBlocking
public <T> Maybe<T> rxExecuteBlocking(Callable<T> blockingCodeHandler, boolean ordered)
Safely execute some blocking code.Executes the blocking code in the handler
blockingCodeHandler
using 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
blockingCodeHandler
the current context remains the original context and therefore any task scheduled in theblockingCodeHandler
will 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> Single<T> executeBlocking(Callable<T> blockingCodeHandler)
LikeexecuteBlocking(java.util.concurrent.Callable<T>, boolean)
called with ordered = true.- Parameters:
blockingCodeHandler
-- Returns:
-
rxExecuteBlocking
public <T> Single<T> rxExecuteBlocking(Callable<T> blockingCodeHandler)
LikeexecuteBlocking(java.util.concurrent.Callable<T>, boolean)
called with ordered = true.- Parameters:
blockingCodeHandler
-- Returns:
-
newInstance
public static WorkerExecutor newInstance(WorkerExecutor arg)
-
-