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.Log
LOG
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PostInsertIdentityPersister
getPersister()
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:
reactivePerformInsert
in interfaceReactiveInsertGeneratedIdentifierDelegate
-
reactivePerformInsert
default CompletionStage<Object> reactivePerformInsert(String insertSQL, SharedSessionContractImplementor session, Binder binder)
- Specified by:
reactivePerformInsert
in interfaceReactiveInsertGeneratedIdentifierDelegate
-
-