Package org.hibernate.reactive.id.insert
Interface ReactiveAbstractReturningDelegate
-
- All Superinterfaces:
ReactiveInsertGeneratedIdentifierDelegate
- All Known Implementing Classes:
ReactiveInsertReturningDelegate
public interface ReactiveAbstractReturningDelegate extends ReactiveInsertGeneratedIdentifierDelegate
-
-
Field Summary
Fields Modifier and Type Field Description static org.hibernate.reactive.logging.impl.LogLOG
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PostInsertIdentityPersistergetPersister()default CompletionStage<Object>reactivePerformInsert(String insertSQL, SharedSessionContractImplementor session, Binder binder)default CompletionStage<Object>reactivePerformInsert(PreparedStatementDetails insertStatementDetails, JdbcValueBindings jdbcValueBindings, Object entity, SharedSessionContractImplementor session)
-
-
-
Method Detail
-
getPersister
PostInsertIdentityPersister getPersister()
-
reactivePerformInsert
default CompletionStage<Object> reactivePerformInsert(PreparedStatementDetails insertStatementDetails, JdbcValueBindings jdbcValueBindings, Object entity, SharedSessionContractImplementor session)
- Specified by:
reactivePerformInsertin interfaceReactiveInsertGeneratedIdentifierDelegate
-
reactivePerformInsert
default CompletionStage<Object> reactivePerformInsert(String insertSQL, SharedSessionContractImplementor session, Binder binder)
- Specified by:
reactivePerformInsertin interfaceReactiveInsertGeneratedIdentifierDelegate
-
-