sleep : Java Glossary
home S words local find no local find frame, full screen Google search web for topic jump to footer translate with Babelfish 2007-06-26 by Roedy Green ©1996-2008 Canadian Mind Products
Go to : punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all)
sleep
You can put a thread to sleep for n milliseconds with code like this:
This guarantees to sleep for at least n milliseconds; like Sleeping Beauty, it may sleep for considerably more if the system is busy. If the Thread awakens normally after its sleep, there will be no InterruptedException, but if some other Thread awakens it prematurely with Thread.interrupt there will be an InterruptedException.

The interrupt is often used for notifying of shutdown, in which case you should probably just rethrow the exception. It can also be used by a timeout task to notify another that its time to complete a task has expired.

You might try to remove the catch and wonder why the compiler complains. Java wants to prepare for the possibility that the sleep may be prematurely awakened by some wandering Prince Charming. It is not nearly as sure as you are that it can’t happen.

You can even put main event-processing thread to sleep, but if you do, no events will be processed; buttons will be dead.

You don’t need to implement Runnable to use sleep.

It is best to use wait/notify to co-ordinate threads, not have them sleep and wake up and check then sleep again. There is no guarantee Threads won’t sleep longer than you requested.

See the warning under Gotchas:Threads on why a sleeping task may never waken if somebody fiddles with the system clock setting while your thread is asleep.


CMP_homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.18] The information on this page is for non-military use only.
You are visitor number 74,428. Military use includes use by defence contractors.
You can get a fresh copy of this page from: or possibly from your local J: drive (Java virtual drive/Mindprod website mirror)
http://mindprod.com/jgloss/sleep.html J:\mindprod\jgloss\sleep.html