Uses of Interface
org.hibernate.reactive.pool.ReactiveConnection
Packages that use ReactiveConnection
Package
Description
Abstracts reactive database access via
ReactiveConnection
and ReactiveConnectionPool.Defines internal contracts between subsystems of Hibernate Reactive
and the
ReactiveSession.-
Uses of ReactiveConnection in org.hibernate.reactive.pool
Classes in org.hibernate.reactive.pool that implement ReactiveConnectionModifier and TypeClassDescriptionclassAReactiveConnectionthat 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 ReactiveConnectionModifier and TypeMethodDescriptionBatchingConnection.withBatchSize(int batchSize) ReactiveConnection.withBatchSize(int batchSize) Methods in org.hibernate.reactive.pool that return types with arguments of type ReactiveConnectionModifier and TypeMethodDescriptionReactiveConnectionPool.getConnection()Obtain a reactive connection, returning the connection via aCompletionStage.ReactiveConnectionPool.getConnection(String tenantId) Obtain a reactive connection for the given tenant id, returning the connection via aCompletionStage.ReactiveConnectionPool.getConnection(String tenantId, SqlExceptionHelper sqlExceptionHelper) Obtain a reactive connection for the given tenant id, returning the connection via aCompletionStageand overriding the defaultSqlExceptionHelperfor the pool.ReactiveConnectionPool.getConnection(SqlExceptionHelper sqlExceptionHelper) Obtain a reactive connection, returning the connection via aCompletionStageand overriding the defaultSqlExceptionHelperfor the pool.Constructors in org.hibernate.reactive.pool with parameters of type ReactiveConnection -
Uses of ReactiveConnection in org.hibernate.reactive.session
Methods in org.hibernate.reactive.session that return ReactiveConnectionModifier and TypeMethodDescriptionReactiveConnectionSupplier.getReactiveConnection()Obtain theReactiveConnectionthat is associated with the current session.