Package org.hibernate.reactive.engine
Interface ReactiveAfterTransactionCompletionProcess
public interface ReactiveAfterTransactionCompletionProcess
Contract representing some process that needs to occur during after transaction completion.
-
Method Summary
Modifier and TypeMethodDescriptiondoAfterTransactionCompletion
(boolean success, ReactiveSession session) Perform whatever processing is encapsulated here after completion of the transaction.
-
Method Details
-
doAfterTransactionCompletion
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.
-