Example usage for io.vertx.sqlclient Pool close

List of usage examples for io.vertx.sqlclient Pool close

Introduction

In this page you can find the example usage for io.vertx.sqlclient Pool close.

Prototype

void close();

Source Link

Document

Close the pool and release the associated resources.

Usage

From source file:examples.MySQLClientExamples.java

public void connecting03(Pool pool) {

    // Close the pool and all the associated resources
    pool.close();
}