See: Description
Interface | Description |
---|---|
LockManager |
An interface to deal with all aspects of acquiring and releasing locks for cache entries.
|
RefCountingLock |
An extension of a JDK
Lock , with support for maintaining a reference counter. |
Class | Description |
---|---|
DeadlockDetectingLockManager |
Lock manager in charge with processing deadlock detections.
|
LockManagerImpl |
Handles locks for the MVCC based LockingInterceptor
|
OwnableReentrantLock |
A lock that supports reentrancy based on owner (and not on current thread).
|
OwnableRefCountingReentrantLock |
A version of
OwnableReentrantLock that has a reference counter, and implements RefCountingLock . |
StripedLock |
A simple implementation of lock striping, using cache entry keys to lock on, primarily used to help make
CacheLoader implemtations thread safe. |
VisibleOwnerReentrantLock |
Extends
ReentrantLock only to make the VisibleOwnerReentrantLock.getOwner() method public. |
VisibleOwnerRefCountingReentrantLock |
A version of
VisibleOwnerReentrantLock that has a reference counter, and implements RefCountingLock . |
Exception | Description |
---|---|
DeadlockDetectedException |
Exception signaling detected deadlocks.
|
Copyright © 2014 JBoss, a division of Red Hat. All Rights Reserved.