public abstract class AbstractTransactionListener extends Object implements TransactionListener
TransactionListener interface
that provides no-op implementations of all methods.| Constructor and Description |
|---|
AbstractTransactionListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
afterBegin(TransactionEvent event)
Notification that a transaction has begun.
|
void |
afterCommit(TransactionEvent event)
Notification that a transaction has successfully committed.
|
void |
afterCommitComplete(TransactionEvent event)
Notification that a transaction has successfully committed and
the transaction is no longer active.
|
void |
afterFlush(TransactionEvent event)
Notification that a transaction has flushed all object changes.
|
void |
afterRollback(TransactionEvent event)
Notification that a transaction has been rolled back.
|
void |
afterRollbackComplete(TransactionEvent event)
Notification that a transaction has been rolled back and
the transaction is no longer active.
|
void |
afterStateTransitions(TransactionEvent event)
Notification that state transitions are complete.
|
void |
beforeCommit(TransactionEvent event)
Notification that the next flush is for the transaction commit.
|
void |
beforeFlush(TransactionEvent event)
Notification that a transaction is about to flush all object changes.
|
protected void |
eventOccurred(TransactionEvent event)
Catch-all for unhandled events.
|
protected void eventOccurred(TransactionEvent event)
public void afterBegin(TransactionEvent event)
BeginTransactionListenerafterBegin in interface BeginTransactionListenerTransactionEvent.AFTER_BEGINpublic void beforeFlush(TransactionEvent event)
FlushTransactionListenerbeforeFlush in interface FlushTransactionListenerTransactionEvent.BEFORE_FLUSHpublic void afterFlush(TransactionEvent event)
FlushTransactionListenerafterFlush in interface FlushTransactionListenerTransactionEvent.AFTER_FLUSHpublic void beforeCommit(TransactionEvent event)
EndTransactionListenerbeforeCommit in interface EndTransactionListenerTransactionEvent.BEFORE_COMMITpublic void afterCommit(TransactionEvent event)
EndTransactionListenerafterCommit in interface EndTransactionListenerTransactionEvent.AFTER_COMMITpublic void afterRollback(TransactionEvent event)
EndTransactionListenerafterRollback in interface EndTransactionListenerTransactionEvent.AFTER_ROLLBACKpublic void afterStateTransitions(TransactionEvent event)
EndTransactionListenerafterStateTransitions in interface EndTransactionListenerTransactionEvent.AFTER_STATE_TRANSITIONSpublic void afterCommitComplete(TransactionEvent event)
EndTransactionListenerafterCommitComplete in interface EndTransactionListenerTransactionEvent.AFTER_COMMIT_COMPLETEpublic void afterRollbackComplete(TransactionEvent event)
EndTransactionListenerafterRollbackComplete in interface EndTransactionListenerTransactionEvent.AFTER_ROLLBACK_COMPLETECopyright © 2006–2020 Apache Software Foundation. All rights reserved.