Uses of Interface
io.vertx.sqlclient.Pool
-
Packages that use Pool Package Description io.vertx.sqlclient io.vertx.sqlclient.spi -
-
Uses of Pool in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return Pool Modifier and Type Method Description static PoolClientBuilder. pool(Driver<?> driver, Handler<ClientBuilder<Pool>> block)Build a pool with the specifiedblockargument andDriverTheblockargument is usually a lambda that configures the provided builderstatic PoolPool. pool(Vertx vertx, SqlConnectOptions database, PoolOptions options)Create a connection pool to thedatabasewith the givenoptions.static PoolPool. pool(SqlConnectOptions connectOptions)Likepool(SqlConnectOptions, PoolOptions)with default options.static PoolPool. pool(SqlConnectOptions database, PoolOptions options)Likepool(Vertx, SqlConnectOptions, PoolOptions)with a Vert.x instance created automatically.Methods in io.vertx.sqlclient that return types with arguments of type Pool Modifier and Type Method Description static ClientBuilder<Pool>ClientBuilder. pool(Driver<?> driver)Provide a builder for a pool of connections for the specifiedDriverMethod parameters in io.vertx.sqlclient with type arguments of type Pool Modifier and Type Method Description static PoolClientBuilder. pool(Driver<?> driver, Handler<ClientBuilder<Pool>> block)Build a pool with the specifiedblockargument andDriverTheblockargument is usually a lambda that configures the provided builder -
Uses of Pool in io.vertx.sqlclient.spi
Methods in io.vertx.sqlclient.spi that return Pool Modifier and Type Method Description default PoolDriver. createPool(Vertx vertx, Supplier<Future<C>> databases, PoolOptions poolOptions, NetClientOptions transportOptions, Handler<SqlConnection> connectHandler)Create a connection pool to the database configured with the givenconnectOptionsandpoolOptions.PoolDriver. newPool(Vertx vertx, Supplier<Future<C>> databases, PoolOptions options, NetClientOptions transportOptions, Handler<SqlConnection> connectHandler, io.vertx.core.internal.CloseFuture closeFuture)Create a connection pool to the database configured with the givenconnectOptionsandpoolOptions.
-