Package org.hibernate.action.spi
Interface BeforeTransactionCompletionProcess
- All Superinterfaces:
TransactionCompletionCallbacks.BeforeCompletionCallback
,TransactionCompletionCallbacks.CompletionCallback
public interface BeforeTransactionCompletionProcess
extends TransactionCompletionCallbacks.BeforeCompletionCallback
Contract representing some process that needs to occur during before transaction completion.
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
Deprecated, for removal: This API element is subject to removal in a future version.Use TransactionCompletionCallbacks.BeforeCompletionCallback.doBeforeTransactionCompletion(SharedSessionContractImplementor) instead.Methods inherited from interface org.hibernate.engine.spi.TransactionCompletionCallbacks.BeforeCompletionCallback
doBeforeTransactionCompletion
-
Method Details
-
doBeforeTransactionCompletion
@Deprecated(since="7.2", forRemoval=true) default void doBeforeTransactionCompletion(SessionImplementor session) Deprecated, for removal: This API element is subject to removal in a future version.Perform whatever processing is encapsulated here before completion of the transaction.- Parameters:
session
- The session on which the transaction is preparing to complete.
-