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)
BeginTransactionListener
afterBegin
in interface BeginTransactionListener
TransactionEvent.AFTER_BEGIN
public void beforeFlush(TransactionEvent event)
FlushTransactionListener
beforeFlush
in interface FlushTransactionListener
TransactionEvent.BEFORE_FLUSH
public void afterFlush(TransactionEvent event)
FlushTransactionListener
afterFlush
in interface FlushTransactionListener
TransactionEvent.AFTER_FLUSH
public void beforeCommit(TransactionEvent event)
EndTransactionListener
beforeCommit
in interface EndTransactionListener
TransactionEvent.BEFORE_COMMIT
public void afterCommit(TransactionEvent event)
EndTransactionListener
afterCommit
in interface EndTransactionListener
TransactionEvent.AFTER_COMMIT
public void afterRollback(TransactionEvent event)
EndTransactionListener
afterRollback
in interface EndTransactionListener
TransactionEvent.AFTER_ROLLBACK
public void afterStateTransitions(TransactionEvent event)
EndTransactionListener
afterStateTransitions
in interface EndTransactionListener
TransactionEvent.AFTER_STATE_TRANSITIONS
public void afterCommitComplete(TransactionEvent event)
EndTransactionListener
afterCommitComplete
in interface EndTransactionListener
TransactionEvent.AFTER_COMMIT_COMPLETE
public void afterRollbackComplete(TransactionEvent event)
EndTransactionListener
afterRollbackComplete
in interface EndTransactionListener
TransactionEvent.AFTER_ROLLBACK_COMPLETE
Copyright © 2006–2022 Apache Software Foundation. All rights reserved.