| Package | Description |
|---|---|
| io.vertx.sqlclient |
| 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
Example usage: Pool pool = ClientBuilder.pool(driver).connectingTo(connectOptions).build() |
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
Example usage: Pool pool = ClientBuilder.pool(driver, builder -> builder.connectingTo(connectOptions)); |
Copyright © 2026 Eclipse. All rights reserved.