Tagged Questions

4
votes
4answers
3k views

File locking (read/write) in Java

I'm writing something to handle concurrent read/write requests to a database file. ReentrantReadWriteLock looks like a good match. If all threads access a shared RandomAccessFile object, do I need ...
1
vote
1answer
57 views

How i can convert ReentrantReadWriteLock.readLock or ReentrantReadWriteLock.writeLock into my class objects

What I am trying to do is to get the number of readcounts hold by the current thread at a single time.I wrote a wrapper for that but my problem is that ReadLock() method is returning ...
0
votes
2answers
47 views

How i can create a wrapper over ReentrantReadWriteLock ReadLock and WriteLock

I have a ReentrantReadWriteLock. The ReentrantReadWriteLock contains ReadLock and WriteLock as subclasses. I want to extend this ReadLock and WriteLock by my custom classes as DummyReadLock and ...
0
votes
1answer
42 views

Can i change java.util.concurrent.locks.Lock into java.util.concurrent.locks.ReentrantReadWriteLock;

I have a method which creates the lock. ReadWriteLock lock = new ReentrantReadWriteLock(); Then I pass this object into a method using Lock Interface. method(Lock lock) inside the method I just ...
0
votes
4answers
106 views

what happens when multiple threads want to access a ReentrantReadWriteLock?

When applying a reentrantReadWriteLock, and it is locked, what happens if another thread accesses the Lock while it is already performing another block? (Thus, before it reaches the .unlock) Is the ...
0
votes
2answers
205 views

Thread blocked forever when waits on lock operation

I'm writing a java implementation for two-phase locking. So, I'm using Reentrant lock (ReadWrite lock). The problem is that when a thread executes the lock.readLock.lock() or lock.writeLock().lock() ...