Package org.apache.openjpa.event
Interface EndTransactionListener
- All Known Subinterfaces:
TransactionListener
- All Known Implementing Classes:
AbstractTransactionListener,AuditManager,RemoteCommitEventManager
public interface EndTransactionListener
Notified when transactions end.
- Since:
- 0.2.5.0
- Author:
- Patrick Linskey, Abe White
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterCommit(TransactionEvent event) Notification that a transaction has successfully committed.voidNotification that a transaction has successfully committed and the transaction is no longer active.voidafterRollback(TransactionEvent event) Notification that a transaction has been rolled back.voidNotification that a transaction has been rolled back and the transaction is no longer active.voidNotification that state transitions are complete.voidbeforeCommit(TransactionEvent event) Notification that the next flush is for the transaction commit.
-
Method Details
-
beforeCommit
Notification that the next flush is for the transaction commit.- See Also:
-
afterCommit
Notification that a transaction has successfully committed.- See Also:
-
afterRollback
Notification that a transaction has been rolled back.- See Also:
-
afterStateTransitions
Notification that state transitions are complete.- See Also:
-
afterCommitComplete
Notification that a transaction has successfully committed and the transaction is no longer active.- See Also:
-
afterRollbackComplete
Notification that a transaction has been rolled back and the transaction is no longer active.- See Also:
-