vote up 2 vote down star
1

When does Java's Thread.sleep throw InterruptedException? Is it safe to ignore it? I am not doing any multithreading. I just want to wait for a few seconds before retrying some operation.

flag

3 Answers

vote up 1 vote down

The Java Specialists newsletter (which I can unreservedly recommend) had an interesting article on this, and how to handle the InterruptedException. It's well worth reading and digesting.

link|flag
vote up 1 vote down

A solid and easy way to handle it in single threaded code would be to catch it and retrow it in a RuntimeException, to avoid the need to declare it for every method.

link|flag
vote up 2 vote down

You should generally NOT ignore the exception. Take a look at the following paper:

http://www.ibm.com/developerworks/java/library/j-jtp05236.html

link|flag

Your Answer

Get an OpenID
or

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