|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.axonframework.repository.OptimisticLockManager
public class OptimisticLockManager
Implementation of the LockManager
that uses an optimistic locking strategy. It uses the sequence number of
the last committed event to detect concurrent access.
ConcurrencyException
to detect concurrent access.
EventSourcedAggregateRoot
,
ConcurrencyException
Constructor Summary | |
---|---|
OptimisticLockManager()
|
Method Summary | |
---|---|
void |
obtainLock(Object aggregateIdentifier)
Obtain a lock for an aggregate with the given aggregateIdentifier . |
void |
releaseLock(Object aggregateIdentifier)
Release the lock held for an aggregate with the given aggregateIdentifier . |
boolean |
validateLock(AggregateRoot aggregate)
Make sure that the current thread holds a valid lock for the given aggregate. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public OptimisticLockManager()
Method Detail |
---|
public boolean validateLock(AggregateRoot aggregate)
validateLock
in interface LockManager
aggregate
- the aggregate to validate the lock for
public void obtainLock(Object aggregateIdentifier)
aggregateIdentifier
. Depending on the strategy, this
method may return immediately or block until a lock is held.
obtainLock
in interface LockManager
aggregateIdentifier
- the identifier of the aggregate to obtains a lock for.public void releaseLock(Object aggregateIdentifier)
aggregateIdentifier
. The caller of this
method must ensure a valid lock was requested using LockManager.obtainLock(Object)
. If no lock was successfully
obtained, the behavior of this method is undefined.
releaseLock
in interface LockManager
aggregateIdentifier
- the identifier of the aggregate to release the lock for.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |