Is something like this possible with synchronized, or do I need to use java.util...Lock:
public void outer() {
synchronized(lock) {
inner();
}
}
public void inner() {
thing1();
release(lock) {
result = doLongNetworkRequest();
}
thing2(result);
}
try-finally(properly). / Are you sure you want to structure your code like this? – Tom Hawtin - tackline May 4 '11 at 10:14finallywhen dealing with locks. The structure is like this because in reality I have many inner methods and the locking is inouterfor DRY reasons. – Bart van Heukelom May 4 '11 at 10:49