Timer : Java Glossary

Timer
If you want a task to be run at some time in the future or repeatedly at regular intervals, in Java version 1.3 or later, you can schedule it with the java.util.Timer class. This is more efficient than creating a Thread for the purpose and sleeping. java.util.Timer efficiently handles all such future events with a single thread. If the event you want to spawn takes a long time, it should spawn its own thread so as not to hold up other events being handled.

The whole idea of java.util.Timer is to avoid the overhead of creating a new Thread for every task. So there is only one Thread to handle all the tasks scheduled on a given Timer. That it why it must execute the tasks sequentially even if scheduled at the same time. If you want two tasks to run simultaneously you will need to either spawn a separate task when the trigger happens or use two Timers.

java.util.Timer

javax.swing.Timer

In Java version 1.2 or later, javax.swing.Timer has similar capabilities. Use it only for GUI (Graphic User Interface) activities since the actions tie up the Swing thread, which is what you want for Swing method invocations. You don’t need SwingUtilities. invokeLater with javax.swing.Timer since it automatically dispatches your Runnable on the EDT (Event Dispatch Thread).

In Java version 1.5 or later there is an even more sophisticated timer called java.util.concurrent.ScheduledThreadPoolExecutor.

Long-Running Events

Timers work with a single Thread. That means your event must complete before the next event needs to be scheduled. If you have a very long running event to be scheduled, have your Timer event start a new Thread to run in the background in parallel with the Timer Thread.

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

Learning More

Oracle’s Javadoc on java.util.Timer class : available:
Oracle’s Javadoc on javax.swing.Timer class : available:
Oracle’s Javadoc on ScheduledThreadPoolExecutor class : available:

CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/timer.html J:\mindprod\jgloss\timer.html
logo
Please email your , letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email. If you want your message, your name or email kept confidential, not considered for public posting, please explicitly specify that. Unless you state otherwise, I will treat your message as a letter to the editor that I may or may not publish in the feedback section. After that, it will be too late to retract it. If you disagree with something I said, please quote it and cite the web page where you found it, tell me why you think it is wrong, and, if possible, provide some supporting evidence. Threatening to kill me or spouting obscenities has yet to persuade me to change my mind.
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.179.214]
You are visitor number 50,467.