|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Manages transaction synchronizations: a list of actions to be done when
the transaction completes on the current thread. Interface is derived mostly from
TransactionSynchronizationManager
which is used by the Confluence implementation.
TransactionSynchronizationManager
,
TransactionSynchronization
,
ConfluenceSynchronizationManager
Method Summary | |
List |
getSynchronizations()
Return an unmodifiable snapshot list of all registered synchronizations for the current thread. |
boolean |
isTransactionActive()
|
void |
registerSynchronization(org.springframework.transaction.support.TransactionSynchronization synchronization)
Registers a Spring TransactionSynchronization on the current transaction. |
void |
runOnSuccessfulCommit(Runnable task)
Register a new task to be run on successful transaction commit. |
Method Detail |
public void runOnSuccessfulCommit(Runnable task)
To run a task with different transaction result criteria, use
registerSynchronization(TransactionSynchronization)
.
isTransactionActive()
public void registerSynchronization(org.springframework.transaction.support.TransactionSynchronization synchronization)
TransactionSynchronization
on the current transaction.
IllegalStateException
- if there is no Spring transaction available.public List getSynchronizations()
IllegalStateException
- if transaction is not activeTransactionSynchronization
public boolean isTransactionActive()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |