Tagged Questions
1
vote
2answers
322 views
Java : ReentrantReadWriteLock with priority
The following is the typical reader and writer pattern (a lot of reads and few writes)
private ReadWriteLock lock = new ReentrantReadWriteLock();
private int value;
public void writeValue(int ...