List of usage examples for io.vertx.mysqlclient MySQLConnection ping
@Fluent MySQLConnection ping(Handler<AsyncResult<Void>> handler);
From source file:examples.MySQLClientExamples.java
public void pingExample(MySQLConnection connection) { connection.ping(ar -> { System.out.println("The server has responded to the PING"); });/*w w w .j av a 2s .c o m*/ }