Uses of Interface
io.vertx.sqlclient.ClientBuilder
-
Packages that use ClientBuilder Package Description io.vertx.sqlclient -
-
Uses of ClientBuilder in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return ClientBuilder Modifier and Type Method Description ClientBuilder<C>ClientBuilder. connectingTo(SqlConnectOptions database)Configure thedatabasethe client should connect to.ClientBuilder<C>ClientBuilder. connectingTo(String database)Configure thedatabasethe client should connect to.ClientBuilder<C>ClientBuilder. connectingTo(Supplier<Future<SqlConnectOptions>> supplier)Configure thedatabasethe client should connect to.ClientBuilder<C>ClientBuilder. connectingTo(List<SqlConnectOptions> databases)Configure thedatabasethe client should connect to.static ClientBuilder<Pool>ClientBuilder. pool(Driver<?> driver)Provide a builder for a pool of connections for the specifiedDriverClientBuilder<C>ClientBuilder. using(Vertx vertx)Sets the vertx instance to use.ClientBuilder<C>ClientBuilder. with(NetClientOptions options)Configure the client pool with the given transportoptions.ClientBuilder<C>ClientBuilder. with(PoolOptions options)Configure the client with the given pooloptionsClientBuilder<C>ClientBuilder. withConnectHandler(Handler<SqlConnection> handler)Set a handler called when the pool has established a connection to the database.Method parameters in io.vertx.sqlclient with type arguments of type ClientBuilder Modifier and Type Method Description static PoolClientBuilder. pool(Driver<?> driver, Handler<ClientBuilder<Pool>> block)Build a pool with the specifiedblockargument andDriverTheblockargument is usually a lambda that configures the provided builder
-