Uses of Interface
org.hibernate.engine.jdbc.batch.spi.Batch
-
Packages that use Batch Package Description org.hibernate.engine.jdbc.batch.internal Internals for JDBC batching support.org.hibernate.engine.jdbc.batch.spi Defines contracts for JDBC batching support.org.hibernate.engine.jdbc.internal Internals for supporting various aspects of JDBC interactionorg.hibernate.engine.jdbc.spi SPI contracts supporting various aspects of JDBC interaction. -
-
Uses of Batch in org.hibernate.engine.jdbc.batch.internal
Classes in org.hibernate.engine.jdbc.batch.internal that implement Batch Modifier and Type Class Description classBatchImplStandard implementation of BatchMethods in org.hibernate.engine.jdbc.batch.internal that return Batch Modifier and Type Method Description BatchBatchBuilderImpl. buildBatch(BatchKey key, Integer explicitBatchSize, Supplier<PreparedStatementGroup> statementGroupSupplier, JdbcCoordinator jdbcCoordinator) -
Uses of Batch in org.hibernate.engine.jdbc.batch.spi
Methods in org.hibernate.engine.jdbc.batch.spi that return Batch Modifier and Type Method Description BatchBatchBuilder. buildBatch(BatchKey key, Integer batchSize, Supplier<PreparedStatementGroup> statementGroupSupplier, JdbcCoordinator jdbcCoordinator)Build a batch. -
Uses of Batch in org.hibernate.engine.jdbc.internal
Methods in org.hibernate.engine.jdbc.internal that return Batch Modifier and Type Method Description BatchJdbcCoordinatorImpl. getBatch(BatchKey key, Integer batchSize, Supplier<PreparedStatementGroup> statementGroupSupplier) -
Uses of Batch in org.hibernate.engine.jdbc.spi
Methods in org.hibernate.engine.jdbc.spi that return Batch Modifier and Type Method Description BatchJdbcCoordinator. getBatch(BatchKey key, Integer batchSize, Supplier<PreparedStatementGroup> statementGroupSupplier)Get the batch for the supplied key, creating one if needed using the supplied statementGroupSupplier.
-