Package org.apache.openjpa.slice
Class ReentrantSliceLock
java.lang.Object
java.util.concurrent.locks.ReentrantLock
org.apache.openjpa.slice.ReentrantSliceLock
- All Implemented Interfaces:
Serializable
,Lock
A reentrant lock that lets a child to work with the parent's lock.
- Author:
- Pinaki Poddar
- See Also:
-
Constructor Summary
-
Method Summary
Methods inherited from class java.util.concurrent.locks.ReentrantLock
getHoldCount, getOwner, getQueuedThreads, getQueueLength, getWaitingThreads, getWaitQueueLength, hasQueuedThread, hasQueuedThreads, hasWaiters, isFair, isHeldByCurrentThread, isLocked, lockInterruptibly, newCondition, toString, tryLock, tryLock
-
Constructor Details
-
ReentrantSliceLock
public ReentrantSliceLock() -
ReentrantSliceLock
public ReentrantSliceLock(boolean fair)
-
-
Method Details
-
lock
public void lock()Locks only for parent thread and let the child use parent's lock.- Specified by:
lock
in interfaceLock
- Overrides:
lock
in classReentrantLock
-
unlock
public void unlock()Unlocks only if parent thread.- Specified by:
unlock
in interfaceLock
- Overrides:
unlock
in classReentrantLock
-