|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.alfresco.repo.policy.TransactionBehaviourQueue
public class TransactionBehaviourQueue
Transaction Behaviour Queue. Responsible for keeping a record of behaviours to execute at the end of a transaction.
Constructor Summary | |
---|---|
TransactionBehaviourQueue()
|
Method Summary | |
---|---|
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. |
boolean |
equals(java.lang.Object obj)
|
void |
flush()
|
int |
hashCode()
|
void |
queue(Behaviour behaviour,
PolicyDefinition definition,
Policy policyInterface,
java.lang.reflect.Method method,
java.lang.Object[] args)
Queue a behaviour for end-of-transaction execution |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TransactionBehaviourQueue()
Method Detail |
---|
public void queue(Behaviour behaviour, PolicyDefinition definition, Policy policyInterface, java.lang.reflect.Method method, java.lang.Object[] args)
behaviour
- definition
- policyInterface
- method
- args
- public void flush()
flush
in interface TransactionListener
public void beforeCommit(boolean readOnly)
TransactionListener
All transaction resources are still available.
beforeCommit
in interface TransactionListener
readOnly
- true if the transaction is read-onlypublic void beforeCompletion()
TransactionListener
TransactionListener.beforeCommit(boolean)
even if TransactionListener.beforeCommit(boolean)
failed.
Any exceptions generated here will only be logged and will have no effect on the state of the transaction.
All transaction resources are still available.
beforeCompletion
in interface TransactionListener
public void afterCommit()
TransactionListener
Any exceptions generated here will cause the transaction to rollback.
Although all transaction resources are still available, this method should be used only for cleaning up resources after a commit has occured.
afterCommit
in interface TransactionListener
public void afterRollback()
TransactionListener
Although all transaction resources are still available, this method should be used only for cleaning up resources after a rollback has occured.
afterRollback
in interface TransactionListener
public int hashCode()
hashCode
in class java.lang.Object
Object.hashCode()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
Object.equals(java.lang.Object)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |