/*
* Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
* which is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/
package io.vertx.core;
import io.vertx.codegen.annotations.Nullable;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.metrics.Measured;
An executor for executing blocking code in Vert.x .
It provides the same executeBlocking
operation than Context
and Vertx
but on a separate worker pool.
Author: Julien Viet
/**
* An executor for executing blocking code in Vert.x .<p>
*
* It provides the same <code>executeBlocking</code> operation than {@link io.vertx.core.Context} and
* {@link io.vertx.core.Vertx} but on a separate worker pool.<p>
*
* @author <a href="mailto:julien@julienviet.com">Julien Viet</a>
*/
@VertxGen
public interface WorkerExecutor extends Measured {
Safely execute some blocking code.
Executes the blocking code in the handler blockingCodeHandler
using a thread from the worker pool.
When the code is complete the handler resultHandler
will be called with the result on the original context (i.e. on the original event loop of the caller).
A Future
instance is passed into blockingCodeHandler
. When the blocking code successfully completes, the handler should call the Promise.complete
or Promise.complete(Object)
method, or the Promise.fail
method if it failed.
In the blockingCodeHandler
the current context remains the original context and therefore any task scheduled in the blockingCodeHandler
will be executed on the this context and not on the worker thread.
Params: - blockingCodeHandler – handler representing the blocking code to run
- resultHandler – handler that will be called when the blocking code is complete
- ordered – 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
Type parameters: - <T> – the type of the result
/**
* Safely execute some blocking code.
* <p>
* Executes the blocking code in the handler {@code blockingCodeHandler} using a thread from the worker pool.
* <p>
* When the code is complete the handler {@code resultHandler} will be called with the result on the original context
* (i.e. on the original event loop of the caller).
* <p>
* A {@code Future} instance is passed into {@code blockingCodeHandler}. When the blocking code successfully completes,
* the handler should call the {@link Promise#complete} or {@link Promise#complete(Object)} method, or the {@link Promise#fail}
* method if it failed.
* <p>
* In the {@code blockingCodeHandler} the current context remains the original context and therefore any task
* scheduled in the {@code blockingCodeHandler} will be executed on the this context and not on the worker thread.
*
* @param blockingCodeHandler handler representing the blocking code to run
* @param resultHandler handler that will be called when the blocking code is complete
* @param ordered 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
* @param <T> the type of the result
*/
<T> void executeBlocking(Handler<Promise<T>> blockingCodeHandler, boolean ordered, Handler<AsyncResult<@Nullable T>> resultHandler);
Like executeBlocking(Handler<Promise<Object>>, boolean, Handler<AsyncResult<Object>>)
called with ordered = true. /**
* Like {@link #executeBlocking(Handler, boolean, Handler)} called with ordered = true.
*/
default <T> void executeBlocking(Handler<Promise<T>> blockingCodeHandler, Handler<AsyncResult<@Nullable T>> resultHandler) {
executeBlocking(blockingCodeHandler, true, resultHandler);
}
Same as executeBlocking(Handler<Promise<Object>>, boolean, Handler<AsyncResult<Object>>)
but with an handler
called when the operation completes /**
* Same as {@link #executeBlocking(Handler, boolean, Handler)} but with an {@code handler} called when the operation completes
*/
<T> Future<@Nullable T> executeBlocking(Handler<Promise<T>> blockingCodeHandler, boolean ordered);
Like executeBlocking(Handler<Promise<Object>>, boolean, Handler<AsyncResult<Object>>)
called with ordered = true. /**
* Like {@link #executeBlocking(Handler, boolean, Handler)} called with ordered = true.
*/
default <T> Future<T> executeBlocking(Handler<Promise<T>> blockingCodeHandler) {
return executeBlocking(blockingCodeHandler, true);
}
Close the executor.
Params: - handler – the completion handler
/**
* Close the executor.
*
* @param handler the completion handler
*/
void close(Handler<AsyncResult<Void>> handler);
Like close(Handler<AsyncResult<Void>>)
but returns a Future
of the asynchronous result /**
* Like {@link #close(Handler)} but returns a {@code Future} of the asynchronous result
*/
Future<Void> close();
}