Package com.aspectran.core.util.thread
Class Locker
- java.lang.Object
-
- com.aspectran.core.util.thread.Locker
-
public class Locker extends java.lang.ObjectConvenience Lock Wrapper.try(Locker.Lock lock = locker.lock()) { // something }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classLocker.LockThe unlocker object that unlocks when it is closed.
-
Constructor Summary
Constructors Constructor Description Locker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisLocked()Locker.Locklock()Acquires the lock.java.util.concurrent.locks.ConditionnewCondition()
-
-
-
Method Detail
-
lock
public Locker.Lock lock()
Acquires the lock.- Returns:
- the lock to unlock
-
isLocked
public boolean isLocked()
- Returns:
- whether this lock has been acquired
-
newCondition
public java.util.concurrent.locks.Condition newCondition()
- Returns:
- a
Conditionassociated with this lock
-
-