ReadWriteLock
Java · 3 notes
- ReentrantReadWriteLockhistorical
A reentrant read/write lock with shared readers, exclusive writers, optional fairness, lock downgrading, and workload trade-offs.
- Nonfair ReentrantReadWriteLockhistorical
Default read/write-lock acquisition, reader/writer barging policy, writer-starvation avoidance heuristics, and throughput trade-offs.
- Fair ReentrantReadWriteLockhistorical
Fair read/write-lock scheduling, queued predecessors, reader grouping, writer progress, and fairness costs.