Uses of Class
io.vertx.mutiny.core.WorkerExecutor
Packages that use WorkerExecutor
-
Uses of WorkerExecutor in io.vertx.mutiny.core
Fields in io.vertx.mutiny.core with type parameters of type WorkerExecutorMethods in io.vertx.mutiny.core that return WorkerExecutorModifier and TypeMethodDescriptionWorkerExecutor.closeAndForget()Close the executor.Vertx.createSharedWorkerExecutor(String name) LikeVertx.createSharedWorkerExecutor(String, int)but with theVertxOptions.setWorkerPoolSize(int)poolSize.Vertx.createSharedWorkerExecutor(String name, int poolSize) LikeVertx.createSharedWorkerExecutor(String, int, long)but with theVertxOptions.setMaxWorkerExecuteTime(long)maxExecuteTime.Vertx.createSharedWorkerExecutor(String name, int poolSize, long maxExecuteTime) LikeVertx.createSharedWorkerExecutor(String, int, long, TimeUnit)but with theVertxOptions.setMaxWorkerExecuteTimeUnit(TimeUnit)maxExecuteTimeUnit.Vertx.createSharedWorkerExecutor(String name, int poolSize, long maxExecuteTime, TimeUnit maxExecuteTimeUnit) Create a named worker executor, the executor should be closed when it's not needed anymore to release resources.<T> WorkerExecutorWorkerExecutor.executeBlockingAndForget(Callable<T> blockingCodeHandler) LikeexecuteBlocking(Callable, boolean)called with ordered = true.<T> WorkerExecutorWorkerExecutor.executeBlockingAndForget(Callable<T> blockingCodeHandler, boolean ordered) Safely execute some blocking code.static WorkerExecutorWorkerExecutor.newInstance(io.vertx.core.WorkerExecutor delegate) Creates a new instance of theWorkerExecutor.