Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the benefits of using ScheduledExecutorService's scheduleAtFixedRate() to run a piece of code on a regular basis instead of creating a new Runnable that has a forever loop coupled with a Thread.sleep() that causes the thread to sleep for the desired period?

Is there a performance gain with one of the methods?

Thanks!

share|improve this question

1 Answer

The biggest benefit of using ScheduledExecutorService is that you don't need to write the code, and that it is well tested. It does also have support for cancelling tasks out of the box, and you can schedule more than one task.

Another benefit is that other developers know what the ScheduledExecutorService does, they can read the javadoc, and they can ask questions about it on puplic forums, and get help, while it's harder to get help for custom code.

The javadoc for ScheduledExecutorService does also have a good example of how to create a tasks that executes every 10 seconds for an hour, and then gets cancelled.

share|improve this answer
Note @dlev's caveat: Tasks are not guaranteed to run at exact intervals due to excessive task duration and/or thread starvation – Bohemian May 31 '11 at 6:42
1  
You might also hope that a library class would handle the complexities of what is supposed to happen if the clock time changes. Whether it actually does is another matter ;-) – EJP May 31 '11 at 7:40
True, but we will probably have to live with that flaw for many years to come :( – Kaj May 31 '11 at 15:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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