org.hibernate.action
Interface AfterTransactionCompletionProcess

All Known Implementing Classes:
EntityAction, EntityDeleteAction, EntityIdentityInsertAction, EntityInsertAction, EntityUpdateAction

public interface AfterTransactionCompletionProcess

Contract representing some process that needs to occur during after transaction completion.

Author:
Steve Ebersole

Method Summary
 void doAfterTransactionCompletion(boolean success, SessionImplementor session)
          Perform whatever processing is encapsulated here after completion of the transaction.
 

Method Detail

doAfterTransactionCompletion

void doAfterTransactionCompletion(boolean success,
                                  SessionImplementor 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.


Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.