Uses of Interface
java.util.concurrent.locks.Lock
| Package | Description |
|---|---|
| java.util.concurrent.locks |
Interfaces and classes providing a framework for locking and waiting
for conditions that is distinct from built-in synchronization and
monitors.
|
| org.apache.http.impl.conn.tsccm |
The implementation of a thread-safe client connection manager.
|
-
Uses of Lock in java.util.concurrent.locks
Classes in java.util.concurrent.locks that implement Lock Modifier and Type Class Description classReentrantLockA reentrant mutual exclusionLockwith the same basic behavior and semantics as the implicit monitor lock accessed usingsynchronizedmethods and statements, but with extended capabilities.static classReentrantReadWriteLock.ReadLockThe lock returned by methodReentrantReadWriteLock.readLock().static classReentrantReadWriteLock.WriteLockThe lock returned by methodReentrantReadWriteLock.writeLock(). -
Uses of Lock in org.apache.http.impl.conn.tsccm
Fields in org.apache.http.impl.conn.tsccm declared as Lock Modifier and Type Field Description protected LockAbstractConnPool. poolLockThe global lock for this pool.