List of usage examples for io.vertx.mysqlclient MySQLConnection getInternalStatistics
@Fluent MySQLConnection getInternalStatistics(Handler<AsyncResult<String>> handler);
From source file:examples.MySQLClientExamples.java
public void statisticsExample(MySQLConnection connection) { connection.getInternalStatistics(ar -> { if (ar.succeeded()) { System.out.println("Statistics: " + ar.result()); } else {/* ww w.ja va 2s . c o m*/ System.out.println("Failure: " + ar.cause().getMessage()); } }); }