Example usage for io.vertx.core WorkerExecutor close

List of usage examples for io.vertx.core WorkerExecutor close

Introduction

In this page you can find the example usage for io.vertx.core WorkerExecutor close.

Prototype

Future<Void> close();

Source Link

Document

Close the executor.

Usage

From source file:examples.CoreExamples.java

License:Open Source License

public void workerExecutor2(WorkerExecutor executor) {
    executor.close();
}