public interface PgPool extends Pool
Modifier and Type | Method and Description |
---|---|
static PgPool |
pool()
Like
pool(PoolOptions) with a default poolOptions . |
static PgPool |
pool(PgConnectOptions connectOptions,
PoolOptions poolOptions)
Create a connection pool to the database configured with the given
connectOptions and poolOptions . |
static PgPool |
pool(PoolOptions poolOptions)
Like
pool(PgConnectOptions, PoolOptions) with connectOptions build from the environment variables. |
static PgPool |
pool(String connectionUri)
Like
pool(String, PoolOptions) with a default poolOptions . |
static PgPool |
pool(String connectionUri,
PoolOptions poolOptions)
|
static PgPool |
pool(io.vertx.core.Vertx vertx,
PgConnectOptions connectOptions,
PoolOptions poolOptions)
Like
pool(PgConnectOptions, PoolOptions) with a specific Vertx instance. |
static PgPool |
pool(io.vertx.core.Vertx vertx,
PoolOptions poolOptions)
Like
pool(Vertx, PgConnectOptions, PoolOptions) with connectOptions build from the environment variables. |
static PgPool |
pool(io.vertx.core.Vertx vertx,
String connectionUri)
Like
pool(Vertx, String,PoolOptions) with a default poolOptions . |
static PgPool |
pool(io.vertx.core.Vertx vertx,
String connectionUri,
PoolOptions poolOptions)
|
<R> PgPool |
preparedBatch(String sql,
List<Tuple> batch,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler) |
PgPool |
preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
<R> PgPool |
preparedQuery(String sql,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler) |
PgPool |
preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
<R> PgPool |
preparedQuery(String sql,
Tuple arguments,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler) |
PgPool |
preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
<R> PgPool |
query(String sql,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler) |
PgPool |
query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
begin, close, getConnection
static PgPool pool()
pool(PoolOptions)
with a default poolOptions
.static PgPool pool(PoolOptions poolOptions)
pool(PgConnectOptions, PoolOptions)
with connectOptions
build from the environment variables.static PgPool pool(String connectionUri)
pool(String, PoolOptions)
with a default poolOptions
.static PgPool pool(String connectionUri, PoolOptions poolOptions)
static PgPool pool(io.vertx.core.Vertx vertx, String connectionUri)
pool(Vertx, String,PoolOptions)
with a default poolOptions
.static PgPool pool(io.vertx.core.Vertx vertx, PoolOptions poolOptions)
pool(Vertx, PgConnectOptions, PoolOptions)
with connectOptions
build from the environment variables.static PgPool pool(io.vertx.core.Vertx vertx, String connectionUri, PoolOptions poolOptions)
static PgPool pool(PgConnectOptions connectOptions, PoolOptions poolOptions)
connectOptions
and poolOptions
.poolOptions
- the options for creating the poolstatic PgPool pool(io.vertx.core.Vertx vertx, PgConnectOptions connectOptions, PoolOptions poolOptions)
pool(PgConnectOptions, PoolOptions)
with a specific Vertx
instance.PgPool preparedQuery(String sql, io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
preparedQuery
in interface Pool
preparedQuery
in interface SqlClient
<R> PgPool preparedQuery(String sql, Collector<Row,?,R> collector, io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
preparedQuery
in interface Pool
preparedQuery
in interface SqlClient
<R> PgPool query(String sql, Collector<Row,?,R> collector, io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
PgPool preparedQuery(String sql, Tuple arguments, io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
preparedQuery
in interface Pool
preparedQuery
in interface SqlClient
<R> PgPool preparedQuery(String sql, Tuple arguments, Collector<Row,?,R> collector, io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
preparedQuery
in interface Pool
preparedQuery
in interface SqlClient
PgPool preparedBatch(String sql, List<Tuple> batch, io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
preparedBatch
in interface Pool
preparedBatch
in interface SqlClient
Copyright © 2019 Eclipse. All rights reserved.