Uses of Class
io.vertx.reactivex.sqlclient.Pool
-
-
Uses of Pool in io.vertx.reactivex.db2client
Subclasses of Pool in io.vertx.reactivex.db2client Modifier and Type Class Description class
DB2Pool
A pool of DB2 connections.Methods in io.vertx.reactivex.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.reactivex.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.reactivex.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.reactivex.jdbcclient
Subclasses of Pool in io.vertx.reactivex.jdbcclient Modifier and Type Class Description class
JDBCPool
JDBCPool is the interface that allows using the Sql Client API with plain JDBC. -
Uses of Pool in io.vertx.reactivex.mssqlclient
Subclasses of Pool in io.vertx.reactivex.mssqlclient Modifier and Type Class Description class
MSSQLPool
A ofSQL Server connections
.Methods in io.vertx.reactivex.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.reactivex.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.reactivex.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.reactivex.mysqlclient
Subclasses of Pool in io.vertx.reactivex.mysqlclient Modifier and Type Class Description class
MySQLPool
A ofMySQL Connections
.Methods in io.vertx.reactivex.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.reactivex.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.reactivex.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.reactivex.oracleclient
Subclasses of Pool in io.vertx.reactivex.oracleclient Modifier and Type Class Description class
OraclePool
Represents a pool of connection to interact with an Oracle database.Methods in io.vertx.reactivex.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.reactivex.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.reactivex.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.reactivex.pgclient
Subclasses of Pool in io.vertx.reactivex.pgclient Modifier and Type Class Description class
PgPool
A ofPostgreSQL connections
.Methods in io.vertx.reactivex.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.reactivex.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.reactivex.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.reactivex.sqlclient
Fields in io.vertx.reactivex.sqlclient with type parameters of type Pool Modifier and Type Field Description static TypeArg<Pool>
Pool. __TYPE_ARG
Methods in io.vertx.reactivex.sqlclient that return Pool Modifier and Type Method Description Pool
Pool. connectHandler(Handler<SqlConnection> handler)
Deprecated.Pool
Pool. connectionProvider(io.reactivex.functions.Function<Context,io.reactivex.Single<SqlConnection>> provider)
Deprecated.Pool
Pool. connectionProvider(Function<Context,Future<SqlConnection>> provider)
Deprecated.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.
-