Uses of Interface
io.vertx.sqlclient.Pool
Packages that use Pool
Package
Description
-
Uses of Pool in io.vertx.db2client
Methods in io.vertx.db2client that return PoolModifier and TypeMethodDescriptionstatic PoolDB2Builder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.db2client that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool> DB2Builder.pool()Provide a builder for DB2 pool of connectionsMethod parameters in io.vertx.db2client with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolDB2Builder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.db2client.spi
Methods in io.vertx.db2client.spi that return PoolModifier and TypeMethodDescriptionprotected PoolDB2Driver.newPool(io.vertx.core.internal.VertxInternal vertx, Handler<SqlConnection> connectHandler, Supplier<Future<DB2ConnectOptions>> databases, PoolOptions poolOptions, NetClientOptions transportOptions, io.vertx.core.internal.CloseFuture closeFuture) -
Uses of Pool in io.vertx.jdbcclient
Subinterfaces of Pool in io.vertx.jdbcclientModifier and TypeInterfaceDescriptioninterfaceJDBCPool is the interface that allows using the Sql Client API with plain JDBC.Methods in io.vertx.jdbcclient that return PoolModifier and TypeMethodDescriptionstatic PoolJDBCPool.pool(Vertx vertx, JDBCConnectOptions connectOptions, PoolOptions poolOptions) Create a JDBC pool which maintains its own data source.static PoolJDBCPool.pool(Vertx vertx, DataSource dataSource, PoolOptions poolOptions) Create a JDBC pool using a pre-initialized data source, note this data source does not need to be a pool. -
Uses of Pool in io.vertx.mssqlclient
Methods in io.vertx.mssqlclient that return PoolModifier and TypeMethodDescriptionstatic PoolMSSQLBuilder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.mssqlclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool> MSSQLBuilder.pool()Provide a builder for MSSQL pool of connectionsMethod parameters in io.vertx.mssqlclient with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolMSSQLBuilder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.mysqlclient
Methods in io.vertx.mysqlclient that return PoolModifier and TypeMethodDescriptionstatic PoolMySQLBuilder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.mysqlclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool> MySQLBuilder.pool()Provide a builder for MySQL pool of connectionsMethod parameters in io.vertx.mysqlclient with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolMySQLBuilder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.mysqlclient.spi
Methods in io.vertx.mysqlclient.spi that return PoolModifier and TypeMethodDescriptionprotected PoolMySQLDriver.newPool(io.vertx.core.internal.VertxInternal vertx, Handler<SqlConnection> connectHandler, Supplier<Future<MySQLConnectOptions>> databases, PoolOptions poolOptions, NetClientOptions transportOptions, io.vertx.core.internal.CloseFuture closeFuture) -
Uses of Pool in io.vertx.oracleclient
Methods in io.vertx.oracleclient that return PoolModifier and TypeMethodDescriptionstatic PoolOracleBuilder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.oracleclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool> OracleBuilder.pool()Provide a builder for Oracle pool of connectionsMethod parameters in io.vertx.oracleclient with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolOracleBuilder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.pgclient
Methods in io.vertx.pgclient that return PoolModifier and TypeMethodDescriptionstatic PoolPgBuilder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.pgclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool> PgBuilder.pool()Provide a builder for PostgreSQL pool of connectionsMethod parameters in io.vertx.pgclient with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolPgBuilder.pool(Handler<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.pgclient.spi
Methods in io.vertx.pgclient.spi that return PoolModifier and TypeMethodDescriptionprotected PoolPgDriver.newPool(io.vertx.core.internal.VertxInternal vertx, Handler<SqlConnection> connectHandler, Supplier<Future<PgConnectOptions>> databases, PoolOptions poolOptions, NetClientOptions transportOptions, io.vertx.core.internal.CloseFuture closeFuture) -
Uses of Pool in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return PoolMethods in io.vertx.reactivex.sqlclient with parameters of type PoolConstructors in io.vertx.reactivex.sqlclient with parameters of type Pool -
Uses of Pool in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return PoolMethods in io.vertx.rxjava3.sqlclient with parameters of type PoolConstructors in io.vertx.rxjava3.sqlclient with parameters of type Pool -
Uses of Pool in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return PoolModifier and TypeMethodDescriptionstatic 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.pool(SqlConnectOptions, PoolOptions)with default options.static PoolPool.pool(SqlConnectOptions database, PoolOptions options) LikePool.pool(Vertx, SqlConnectOptions, PoolOptions)with a Vert.x instance created automatically.Methods in io.vertx.sqlclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool> Provide a builder for a pool of connections for the specifiedDriverMethod parameters in io.vertx.sqlclient with type arguments of type Pool -
Uses of Pool in io.vertx.sqlclient.spi
Methods in io.vertx.sqlclient.spi that return PoolModifier and TypeMethodDescriptiondefault 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.Driver.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.protected PoolDriverBase.newPool(io.vertx.core.internal.VertxInternal vertx, Handler<SqlConnection> connectHandler, Supplier<Future<O>> databases, PoolOptions poolOptions, NetClientOptions transportOptions, io.vertx.core.internal.CloseFuture closeFuture) DriverBase.newPool(Vertx vertx, Supplier<Future<O>> databases, PoolOptions options, NetClientOptions transportOptions, Handler<SqlConnection> connectHandler, io.vertx.core.internal.CloseFuture closeFuture)