Package org.alfresco.util.transaction
Interface TransactionListener
-
- All Known Implementing Classes:
AbstractAsynchronouslyRefreshedCache
,TransactionListenerAdapter
public interface TransactionListener
Listener for Alfresco-specific transaction callbacks.- Author:
- Derek Hulley
- See Also:
org.alfresco.repo.transaction.AlfrescoTransactionSupport
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterCommit()
Invoked after transaction commit.void
afterRollback()
Invoked after transaction rollback.void
beforeCommit(boolean readOnly)
Called before a transaction is committed.void
beforeCompletion()
Invoked before transaction commit/rollback.
-
-
-
Method Detail
-
beforeCommit
void beforeCommit(boolean readOnly)
Called before a transaction is committed.All transaction resources are still available.
- Parameters:
readOnly
- true if the transaction is read-only
-
beforeCompletion
void beforeCompletion()
Invoked before transaction commit/rollback. Will be called afterbeforeCommit(boolean)
even ifbeforeCommit(boolean)
failed.All transaction resources are still available.
-
afterCommit
void afterCommit()
Invoked after transaction commit.Any exceptions generated here will only be logged and will have no effect on the state of the transaction.
Although all transaction resources are still available, this method should be used only for cleaning up resources after a commit has occured.
-
afterRollback
void afterRollback()
Invoked after transaction rollback.Any exceptions generated here will only be logged and will have no effect on the state of the transaction.
Although all transaction resources are still available, this method should be used only for cleaning up resources after a rollback has occured.
-
-