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 do the following.

final ReentrantReadWriteLock currentLock = (ReentrantReadWriteLock) lock;
link|improve this question

33% accept rate
Just take a look into javadoc of ReadWriterLock / ReentrantReadWriteLock, and see which interface is implemented by it. This is something you can answer yourself, that ReadWriteLock is not a Lock – Adrian Shum Nov 30 '11 at 10:23
feedback

1 Answer

up vote 1 down vote accepted

A ReentrantReadWriteLock is not a Lock. It contains two related Locks a read lock and a write lock. You can pass either of these but you can't get the original ReentrantReadWriteLock back.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.