(This is my first question, although I come here very often to solve my questions). This is like a philosofical question, given that I already know what I'm asking for is not directly supported by Java.
The thing is that the try-catch is meant to help in the exception handling. This means somehow that it will help our system to be more robust: try to recover from an unexpected event.
We suspect something might happend when executing and instruction (sending a message), so it gets enclosed in the try. If that something nearly unexpected happens, we can do something: we write the catch. I don't think we called to just log the exception. I thing the catch block is meant to give us the oportunity of recovering from the error.
Now, let's say we recover from the error! because we could fix what was wrong. It could be super nice to do a re-try:
try{ some_instruction(); }
catch (NearlyUnexpectedException e){
fix_the_problem();
retry;
}
This would quickly fall in the eternal loop, but let's say that the fix_the_problem returns true, then we retry. Given that there is no such thing in Java. How would YOU solve this problem. How would be your best design code for solving this?
Thanks in advance for everyone interested in solving this puzzle.
Andrés
remove()from ajava.util.Queue, which thorws andInvalidElementExceptionwhen the queue is empty. Instead of asking if it's empty, I sourround the actions in a try-catch (which under concurrency becomes compulsory even with the previous if). In such a case, in thecatchblock I would ask to refill the queue with more elements and then, retry. Voila. – Andres Farias Nov 6 '12 at 10:57