Uses of Interface
org.hibernate.reactive.pool.ReactiveConnection
-
Packages that use ReactiveConnection Package Description org.hibernate.reactive.pool Abstracts reactive database access viaReactiveConnection
andReactiveConnectionPool
.org.hibernate.reactive.session Defines internal contracts between subsystems of Hibernate Reactive and theReactiveSession
. -
-
Uses of ReactiveConnection in org.hibernate.reactive.pool
Classes in org.hibernate.reactive.pool that implement ReactiveConnection Modifier and Type Class Description class
BatchingConnection
AReactiveConnection
that automatically performs batching of insert, update, and delete statements, relieving the client persister code of the responsibility to manage batching.Methods in org.hibernate.reactive.pool that return ReactiveConnection Modifier and Type Method Description ReactiveConnection
BatchingConnection. withBatchSize(int batchSize)
ReactiveConnection
ReactiveConnection. withBatchSize(int batchSize)
Methods in org.hibernate.reactive.pool that return types with arguments of type ReactiveConnection Modifier and Type Method Description CompletionStage<ReactiveConnection>
ReactiveConnectionPool. getConnection()
Obtain a reactive connection, returning the connection via aCompletionStage
.CompletionStage<ReactiveConnection>
ReactiveConnectionPool. getConnection(String tenantId)
Obtain a reactive connection for the given tenant id, returning the connection via aCompletionStage
.CompletionStage<ReactiveConnection>
ReactiveConnectionPool. getConnection(String tenantId, SqlExceptionHelper sqlExceptionHelper)
Obtain a reactive connection for the given tenant id, returning the connection via aCompletionStage
and overriding the defaultSqlExceptionHelper
for the pool.CompletionStage<ReactiveConnection>
ReactiveConnectionPool. getConnection(SqlExceptionHelper sqlExceptionHelper)
Obtain a reactive connection, returning the connection via aCompletionStage
and overriding the defaultSqlExceptionHelper
for the pool.Constructors in org.hibernate.reactive.pool with parameters of type ReactiveConnection Constructor Description BatchingConnection(ReactiveConnection delegate, int batchSize)
-
Uses of ReactiveConnection in org.hibernate.reactive.session
Methods in org.hibernate.reactive.session that return ReactiveConnection Modifier and Type Method Description ReactiveConnection
ReactiveConnectionSupplier. getReactiveConnection()
Obtain theReactiveConnection
that is associated with the current session.
-