Package org.hibernate.reactive.id.insert
Class ReactiveBasicSelectingDelegate
- java.lang.Object
-
- org.hibernate.id.insert.AbstractSelectingDelegate
-
- org.hibernate.id.insert.BasicSelectingDelegate
-
- org.hibernate.reactive.id.insert.ReactiveBasicSelectingDelegate
-
- All Implemented Interfaces:
InsertGeneratedIdentifierDelegate
,ReactiveAbstractSelectingDelegate
,ReactiveInsertGeneratedIdentifierDelegate
public class ReactiveBasicSelectingDelegate extends BasicSelectingDelegate implements ReactiveAbstractSelectingDelegate
-
-
Field Summary
-
Fields inherited from interface org.hibernate.reactive.id.insert.ReactiveAbstractSelectingDelegate
LOG
-
-
Constructor Summary
Constructors Constructor Description ReactiveBasicSelectingDelegate(PostInsertIdentityPersister persister, Dialect dialect)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
bindParameters(Object entity, PreparedStatement ps, SharedSessionContractImplementor session)
Object
extractGeneratedValue(ResultSet resultSet, SharedSessionContractImplementor session)
String
getSelectSQL()
CompletionStage<Object>
reactivePerformInsert(String insertSQL, SharedSessionContractImplementor session, Binder binder)
-
Methods inherited from class org.hibernate.id.insert.BasicSelectingDelegate
createTableInsertBuilder, prepareIdentifierGeneratingInsert
-
Methods inherited from class org.hibernate.id.insert.AbstractSelectingDelegate
performInsert, performInsert, prepareStatement
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.id.insert.InsertGeneratedIdentifierDelegate
prepareIdentifierGeneratingInsert
-
Methods inherited from interface org.hibernate.reactive.id.insert.ReactiveAbstractSelectingDelegate
reactivePerformInsert
-
-
-
-
Constructor Detail
-
ReactiveBasicSelectingDelegate
public ReactiveBasicSelectingDelegate(PostInsertIdentityPersister persister, Dialect dialect)
-
-
Method Detail
-
reactivePerformInsert
public CompletionStage<Object> reactivePerformInsert(String insertSQL, SharedSessionContractImplementor session, Binder binder)
- Specified by:
reactivePerformInsert
in interfaceReactiveInsertGeneratedIdentifierDelegate
-
getSelectSQL
public String getSelectSQL()
- Specified by:
getSelectSQL
in interfaceReactiveAbstractSelectingDelegate
- Overrides:
getSelectSQL
in classBasicSelectingDelegate
-
bindParameters
public void bindParameters(Object entity, PreparedStatement ps, SharedSessionContractImplementor session)
- Specified by:
bindParameters
in interfaceReactiveAbstractSelectingDelegate
- Overrides:
bindParameters
in classAbstractSelectingDelegate
-
extractGeneratedValue
public Object extractGeneratedValue(ResultSet resultSet, SharedSessionContractImplementor session)
- Specified by:
extractGeneratedValue
in interfaceReactiveAbstractSelectingDelegate
- Overrides:
extractGeneratedValue
in classAbstractSelectingDelegate
-
-