Uses of Class
io.vertx.mutiny.sqlclient.Pool
Packages that use Pool
Package
Description
-
Uses of Pool in io.vertx.mutiny.db2client
Methods in io.vertx.mutiny.db2client that return PoolModifier and TypeMethodDescriptionstatic PoolDB2Builder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.mutiny.db2client that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool>DB2Builder.pool()Provide a builder for DB2 pool of connectionsMethod parameters in io.vertx.mutiny.db2client with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolDB2Builder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.mutiny.mssqlclient
Methods in io.vertx.mutiny.mssqlclient that return PoolModifier and TypeMethodDescriptionstatic PoolMSSQLBuilder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.mutiny.mssqlclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool>MSSQLBuilder.pool()Provide a builder for MSSQL pool of connectionsMethod parameters in io.vertx.mutiny.mssqlclient with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolMSSQLBuilder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.mutiny.mysqlclient
Methods in io.vertx.mutiny.mysqlclient that return PoolModifier and TypeMethodDescriptionstatic PoolMySQLBuilder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.mutiny.mysqlclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool>MySQLBuilder.pool()Provide a builder for MySQL pool of connectionsMethod parameters in io.vertx.mutiny.mysqlclient with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolMySQLBuilder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.mutiny.oracleclient
Methods in io.vertx.mutiny.oracleclient that return PoolModifier and TypeMethodDescriptionstatic PoolOracleBuilder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.mutiny.oracleclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool>OracleBuilder.pool()Provide a builder for Oracle pool of connectionsMethod parameters in io.vertx.mutiny.oracleclient with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolOracleBuilder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.mutiny.pgclient
Methods in io.vertx.mutiny.pgclient that return PoolModifier and TypeMethodDescriptionstatic PoolPgBuilder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument.Methods in io.vertx.mutiny.pgclient that return types with arguments of type PoolModifier and TypeMethodDescriptionstatic ClientBuilder<Pool>PgBuilder.pool()Provide a builder for PostgreSQL pool of connectionsMethod parameters in io.vertx.mutiny.pgclient with type arguments of type PoolModifier and TypeMethodDescriptionstatic PoolPgBuilder.pool(Consumer<ClientBuilder<Pool>> block) Build a pool with the specifiedblockargument. -
Uses of Pool in io.vertx.mutiny.sqlclient
Fields in io.vertx.mutiny.sqlclient with type parameters of type PoolMethods in io.vertx.mutiny.sqlclient that return PoolModifier and TypeMethodDescriptionPool.closeAndForget()Close the client and release the associated resources.Pool.getConnectionAndForget()Get a connection from the pool.static PoolPool.newInstance(io.vertx.sqlclient.Pool delegate) Creates a new instance of thePool.static PoolPool.pool(Vertx vertx, io.vertx.sqlclient.SqlConnectOptions database, io.vertx.sqlclient.PoolOptions options) Create a connection pool to thedatabasewith the givenoptions.static PoolPool.pool(io.vertx.sqlclient.SqlConnectOptions connectOptions) Likepool(SqlConnectOptions, PoolOptions)with default options.static PoolPool.pool(io.vertx.sqlclient.SqlConnectOptions database, io.vertx.sqlclient.PoolOptions options) Likepool(Vertx, SqlConnectOptions, PoolOptions)with a Vert.x instance created automatically.<T> PoolPool.withConnectionAndForget(Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) Get a connection from the pool and execute the givenfunction.<T> PoolPool.withTransactionAndForget(io.vertx.sqlclient.TransactionPropagation txPropagation, Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) LikewithTransaction(Function)but allows for setting the mode, defining how the acquired connection is managed during the execution of the function.<T> PoolPool.withTransactionAndForget(Function<SqlConnection, io.smallrye.mutiny.Uni<T>> function) Execute the givenfunctionwithin a transaction.Methods in io.vertx.mutiny.sqlclient with parameters of type PoolModifier and TypeMethodDescriptionstatic <T> io.smallrye.mutiny.Multi<T>SqlClientHelper.inTransactionMulti(Pool pool, Function<SqlClient, io.smallrye.mutiny.Multi<T>> sourceSupplier) Generates aMultifrom operations executed inside aTransaction.static <T> io.smallrye.mutiny.Uni<T>SqlClientHelper.inTransactionUni(Pool pool, Function<SqlClient, io.smallrye.mutiny.Uni<T>> sourceSupplier) Generates aUnifrom operations executed inside aTransaction.static <T> io.smallrye.mutiny.Multi<T>SqlClientHelper.usingConnectionMulti(Pool pool, Function<SqlConnection, io.smallrye.mutiny.Multi<T>> sourceSupplier) Generates aMultifromSqlConnectionoperations.static <T> io.smallrye.mutiny.Uni<T>SqlClientHelper.usingConnectionUni(Pool pool, Function<SqlConnection, io.smallrye.mutiny.Uni<T>> sourceSupplier) Generates aUnifromSqlConnectionoperations.