Vertx JDBC how it works under the hood
问题 I have been using Vertx for 3 month, but now I wonder how non blocking Vertx JDBC works,for example private void selectEndedMatches(){ this.jdbcClient.getConnection(conn->{ if(conn.failed()){ log.error("Can't get Vertx connection",conn.cause()); } else{ final SQLConnection connection = conn.result(); connection.queryWithParams("select matchid from get5_stats_matches where matchid > ? and end_time is not null",new JsonArray().add(this.lastMatchId),this::endedMatches); connection.close(); } });