Package org.hibernate.action.spi
Interface AfterTransactionCompletionProcess
-
public interface AfterTransactionCompletionProcessContract representing some process that needs to occur during after transaction completion.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoAfterTransactionCompletion(boolean success, SharedSessionContractImplementor session)Perform whatever processing is encapsulated here after completion of the transaction.
-
-
-
Method Detail
-
doAfterTransactionCompletion
void doAfterTransactionCompletion(boolean success, SharedSessionContractImplementor session)Perform whatever processing is encapsulated here after completion of the transaction.- Parameters:
success- Did the transaction complete successfully? True means it did.session- The session on which the transaction is completing.
-
-