Modifier and Type | Interface and Description |
---|---|
interface |
DB2Pool
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static Pool |
DB2Builder.pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
Modifier and Type | Method and Description |
---|---|
static ClientBuilder<Pool> |
DB2Builder.pool()
Provide a builder for DB2 pool of connections
|
Modifier and Type | Method and Description |
---|---|
static Pool |
DB2Builder.pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
Modifier and Type | Method and Description |
---|---|
Pool |
DB2Driver.newPool(Vertx vertx,
java.util.function.Supplier<? extends Future<? extends SqlConnectOptions>> databases,
PoolOptions options,
io.vertx.core.impl.CloseFuture closeFuture) |
Modifier and Type | Interface and Description |
---|---|
interface |
JDBCPool
JDBCPool is the interface that allows using the Sql Client API with plain JDBC.
|
Modifier and Type | Interface and Description |
---|---|
interface |
MSSQLPool
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static Pool |
MSSQLBuilder.pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
Modifier and Type | Method and Description |
---|---|
static ClientBuilder<Pool> |
MSSQLBuilder.pool()
Provide a builder for MSSQL pool of connections
|
Modifier and Type | Method and Description |
---|---|
static Pool |
MSSQLBuilder.pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
Modifier and Type | Method and Description |
---|---|
Pool |
MSSQLDriver.newPool(Vertx vertx,
java.util.function.Supplier<? extends Future<? extends SqlConnectOptions>> databases,
PoolOptions options,
io.vertx.core.impl.CloseFuture closeFuture) |
Modifier and Type | Interface and Description |
---|---|
interface |
MySQLPool
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static Pool |
MySQLBuilder.pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
Modifier and Type | Method and Description |
---|---|
static ClientBuilder<Pool> |
MySQLBuilder.pool()
Provide a builder for MySQL pool of connections
|
Modifier and Type | Method and Description |
---|---|
static Pool |
MySQLBuilder.pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
Modifier and Type | Method and Description |
---|---|
Pool |
MySQLDriver.newPool(Vertx vertx,
java.util.function.Supplier<? extends Future<? extends SqlConnectOptions>> databases,
PoolOptions options,
io.vertx.core.impl.CloseFuture closeFuture) |
Modifier and Type | Interface and Description |
---|---|
interface |
PgPool
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static Pool |
PgBuilder.pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
Modifier and Type | Method and Description |
---|---|
static ClientBuilder<Pool> |
PgBuilder.pool()
Provide a builder for PostgreSQL pool of connections
|
Modifier and Type | Method and Description |
---|---|
static Pool |
PgBuilder.pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
Modifier and Type | Method and Description |
---|---|
Pool |
PgDriver.newPool(Vertx vertx,
java.util.function.Supplier<? extends Future<? extends SqlConnectOptions>> databases,
PoolOptions options,
io.vertx.core.impl.CloseFuture closeFuture) |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static Pool |
Pool.newInstance(Pool arg) |
Constructor and Description |
---|
Pool(Pool delegate) |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static Pool |
Pool.newInstance(Pool arg) |
Constructor and Description |
---|
Pool(Pool delegate) |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static Pool |
Pool.newInstance(Pool arg) |
Constructor and Description |
---|
Pool(Pool delegate) |
Modifier and Type | Method and Description |
---|---|
Pool |
Pool.connectHandler(Handler<SqlConnection> handler)
Deprecated.
instead use
ClientBuilder.withConnectHandler(Handler) |
Pool |
Pool.connectionProvider(java.util.function.Function<Context,Future<SqlConnection>> provider)
Deprecated.
instead use
ClientBuilder.connectingTo(Supplier) |
static Pool |
ClientBuilder.pool(Driver driver,
Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument and Driver
The block argument is usually a lambda that configures the provided builder |
static Pool |
Pool.pool(SqlConnectOptions connectOptions)
Like
pool(SqlConnectOptions, PoolOptions) with default options. |
static Pool |
Pool.pool(SqlConnectOptions database,
PoolOptions options)
Like
pool(Vertx, SqlConnectOptions, PoolOptions) with a Vert.x instance created automatically. |
static Pool |
Pool.pool(Vertx vertx,
SqlConnectOptions database,
PoolOptions options)
Create a connection pool to the
database with the given options . |
Modifier and Type | Method and Description |
---|---|
static ClientBuilder<Pool> |
ClientBuilder.pool(Driver driver)
Provide a builder for a pool of connections for the specified
Driver |
Modifier and Type | Method and Description |
---|---|
static Pool |
ClientBuilder.pool(Driver driver,
Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument and Driver
The block argument is usually a lambda that configures the provided builder |
Modifier and Type | Method and Description |
---|---|
default Pool |
Driver.createPool(Vertx vertx,
List<? extends SqlConnectOptions> databases,
PoolOptions options)
Create a connection pool to the database configured with the given
connectOptions and poolOptions . |
default Pool |
Driver.createPool(Vertx vertx,
java.util.function.Supplier<? extends Future<? extends SqlConnectOptions>> databases,
PoolOptions options)
Create a connection pool to the database configured with the given
connectOptions and poolOptions . |
default Pool |
Driver.newPool(Vertx vertx,
List<? extends SqlConnectOptions> databases,
PoolOptions options,
io.vertx.core.impl.CloseFuture closeFuture)
Create a connection pool to the database configured with the given
connectOptions and poolOptions . |
Pool |
Driver.newPool(Vertx vertx,
java.util.function.Supplier<? extends Future<? extends SqlConnectOptions>> databases,
PoolOptions options,
io.vertx.core.impl.CloseFuture closeFuture)
Create a connection pool to the database configured with the given
connectOptions and poolOptions . |
Copyright © 2024 Eclipse. All rights reserved.