Package org.hibernate.reactive.engine
Interface ReactiveBeforeTransactionCompletionProcess
-
public interface ReactiveBeforeTransactionCompletionProcess
Contract representing some process that needs to occur during before transaction completion.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletionStage<Void>
doBeforeTransactionCompletion(ReactiveSession session)
Perform whatever processing is encapsulated here before completion of the transaction.
-
-
-
Method Detail
-
doBeforeTransactionCompletion
CompletionStage<Void> doBeforeTransactionCompletion(ReactiveSession session)
Perform whatever processing is encapsulated here before completion of the transaction.- Parameters:
session
- The session on which the transaction is preparing to complete.
-
-