Uses of Class
io.vertx.rxjava3.sqlclient.Pool
-
-
Uses of Pool in io.vertx.rxjava3.db2client
Methods in io.vertx.rxjava3.db2client that return Pool Modifier and Type Method Description static Pool
DB2Builder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument.Methods in io.vertx.rxjava3.db2client that return types with arguments of type Pool Modifier and Type Method Description static ClientBuilder<Pool>
DB2Builder. pool()
Provide a builder for DB2 pool of connectionsMethod parameters in io.vertx.rxjava3.db2client with type arguments of type Pool Modifier and Type Method Description static Pool
DB2Builder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument. -
Uses of Pool in io.vertx.rxjava3.jdbcclient
Subclasses of Pool in io.vertx.rxjava3.jdbcclient Modifier and Type Class Description class
JDBCPool
JDBCPool is the interface that allows using the Sql Client API with plain JDBC.Methods in io.vertx.rxjava3.jdbcclient that return Pool Modifier and Type Method Description static Pool
JDBCPool. pool(Vertx vertx, JDBCConnectOptions connectOptions, PoolOptions poolOptions)
Create a JDBC pool which maintains its own data source.static Pool
JDBCPool. 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.rxjava3.mssqlclient
Methods in io.vertx.rxjava3.mssqlclient that return Pool Modifier and Type Method Description static Pool
MSSQLBuilder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument.Methods in io.vertx.rxjava3.mssqlclient that return types with arguments of type Pool Modifier and Type Method Description static ClientBuilder<Pool>
MSSQLBuilder. pool()
Provide a builder for MSSQL pool of connectionsMethod parameters in io.vertx.rxjava3.mssqlclient with type arguments of type Pool Modifier and Type Method Description static Pool
MSSQLBuilder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument. -
Uses of Pool in io.vertx.rxjava3.mysqlclient
Methods in io.vertx.rxjava3.mysqlclient that return Pool Modifier and Type Method Description static Pool
MySQLBuilder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument.Methods in io.vertx.rxjava3.mysqlclient that return types with arguments of type Pool Modifier and Type Method Description static ClientBuilder<Pool>
MySQLBuilder. pool()
Provide a builder for MySQL pool of connectionsMethod parameters in io.vertx.rxjava3.mysqlclient with type arguments of type Pool Modifier and Type Method Description static Pool
MySQLBuilder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument. -
Uses of Pool in io.vertx.rxjava3.oracleclient
Methods in io.vertx.rxjava3.oracleclient that return Pool Modifier and Type Method Description static Pool
OracleBuilder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument.Methods in io.vertx.rxjava3.oracleclient that return types with arguments of type Pool Modifier and Type Method Description static ClientBuilder<Pool>
OracleBuilder. pool()
Provide a builder for Oracle pool of connectionsMethod parameters in io.vertx.rxjava3.oracleclient with type arguments of type Pool Modifier and Type Method Description static Pool
OracleBuilder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument. -
Uses of Pool in io.vertx.rxjava3.pgclient
Methods in io.vertx.rxjava3.pgclient that return Pool Modifier and Type Method Description static Pool
PgBuilder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument.Methods in io.vertx.rxjava3.pgclient that return types with arguments of type Pool Modifier and Type Method Description static ClientBuilder<Pool>
PgBuilder. pool()
Provide a builder for PostgreSQL pool of connectionsMethod parameters in io.vertx.rxjava3.pgclient with type arguments of type Pool Modifier and Type Method Description static Pool
PgBuilder. pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specifiedblock
argument. -
Uses of Pool in io.vertx.rxjava3.sqlclient
Fields in io.vertx.rxjava3.sqlclient with type parameters of type Pool Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<Pool>
Pool. __TYPE_ARG
Methods in io.vertx.rxjava3.sqlclient that return Pool Modifier and Type Method Description static Pool
Pool. newInstance(Pool arg)
static Pool
Pool. pool(Vertx vertx, SqlConnectOptions database, PoolOptions options)
Create a connection pool to thedatabase
with the givenoptions
.static Pool
Pool. pool(SqlConnectOptions connectOptions)
Likepool(io.vertx.sqlclient.SqlConnectOptions)
with default options.static Pool
Pool. pool(SqlConnectOptions database, PoolOptions options)
Likepool(io.vertx.sqlclient.SqlConnectOptions)
with a Vert.x instance created automatically.
-