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

Is task guaranteed to be run by a single thread at any given time?

share|improve this question
1  
-1 for the inability to read the documentation. – Bombe Aug 6 '09 at 9:16
Right you are . – ripper234 Aug 6 '09 at 9:19
Ouch, a down vote for RTFM? You'd have to down vote almost all the questions on Stack Overflow then. – Andre Miller Aug 6 '09 at 9:58
6  
Stackoverflow is TFM ! – Thilo Aug 6 '09 at 10:08

3 Answers

up vote 5 down vote accepted

From the Javadoc

Corresponding to each Timer object is a single background thread that is used to execute all of the timer's tasks, sequentially. Timer tasks should complete quickly. If a timer task takes excessive time to complete, it "hogs" the timer's task execution thread. This can, in turn, delay the execution of subsequent tasks, which may "bunch up" and execute in rapid succession when (and if) the offending task finally completes.

So, yes, you get a new Thread (separate from the caller's thread). Every task in that timer shares the same thread.

share|improve this answer

There is a single thread per Timer, so the answer to your question is yes

share|improve this answer

Indeed. They all run on a same background thread corresponded to the Timer object in sequence. BUT two different Timer instances will run (I believe) on different threads, so you have to save reference to a timer object to schedule more tasks sequentialy.

share|improve this answer

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.