接口 AfterTransactionCompletionProcess
-
- 所有已知实现类:
AbstractEntityInsertAction,EntityAction,EntityDeleteAction,EntityIdentityInsertAction,EntityInsertAction,EntityUpdateAction,OrphanRemovalAction
public interface AfterTransactionCompletionProcessContract representing some process that needs to occur during after transaction completion.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voiddoAfterTransactionCompletion(boolean success, SharedSessionContractImplementor session)Perform whatever processing is encapsulated here after completion of the transaction.
-
-
-
方法详细资料
-
doAfterTransactionCompletion
void doAfterTransactionCompletion(boolean success, SharedSessionContractImplementor session)Perform whatever processing is encapsulated here after completion of the transaction.- 参数:
success- Did the transaction complete successfully? True means it did.session- The session on which the transaction is completing.
-
-