aspose file tools
The moose likes Developer Certification (SCJD/OCMJD) and the fly likes hand over hand locking Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Developer Certification (SCJD/OCMJD)
Reply Bookmark "hand over hand locking" Watch "hand over hand locking" New topic
Author

hand over hand locking

Mike Hays
Greenhorn

Joined: May 15, 2009
Posts: 14
Hello,

I've read that masterLock.lock() in the following code should come before the try block because it might throw an exception. If it is placed inside the try block and an exception is thrown, the finally block will attempt to unlock a lock that isn't locked.

Can masterLock.unlock() also throw an exception? If it does then recordLock might not get unlocked. Is the following code not a correct way to implement hand over hand locking?

Mike Hays
Greenhorn

Joined: May 15, 2009
Posts: 14
Hi all,

I'm also trying to understand how to acquire 2 locks in a row. For example,





Are either of the above approaches correct? As noted in the comments they both seem to have problems.

How about



But I've read that nested try blocks are undesirable. Anyone know how to do this correctly?
 
jQuery in Action, 2nd edition
 
subject: hand over hand locking
 
Similar Threads
Multiple Notification Points
API methods and synchronization
B&S Locking
[locking] Hand over hand, remove() ?
Releasing locks