public interface PgBuilder
Modifier and Type | Method and Description |
---|---|
static ClientBuilder<SqlClient> |
client()
Provide a builder for PostgreSQL client backed by a connection pool.
|
static SqlClient |
client(Handler<ClientBuilder<SqlClient>> handler)
Build a client backed by a connection pool with the specified
block argument. |
static ClientBuilder<Pool> |
pool()
Provide a builder for PostgreSQL pool of connections
|
static Pool |
pool(Handler<ClientBuilder<Pool>> block)
Build a pool with the specified
block argument. |
static Pool pool(Handler<ClientBuilder<Pool>> block)
block
argument.
The block
argument is usually a lambda that configures the provided builder
Example usage: Pool pool = PgBuilder.pool(builder -> builder.connectingTo(connectOptions));
block
static ClientBuilder<Pool> pool()
Example usage: Pool pool = PgBuilder.pool().connectingTo(connectOptions).build()
static SqlClient client(Handler<ClientBuilder<SqlClient>> handler)
block
argument.
The block
argument is usually a lambda that configures the provided builder
Example usage: SqlClient client = PgBuilder.client(builder -> builder.connectingTo(connectOptions));
block
static ClientBuilder<SqlClient> client()
Example usage: SqlClient client = PgBuilder.client().connectingTo(connectOptions).build()
Copyright © 2024 Eclipse. All rights reserved.