new Timer(...).schedule(task)
Is task guaranteed to be run by a single thread at any given time?
|
|
Is
|
||||||||||||
|
|
|
From the Javadoc
So, yes, you get a new Thread (separate from the caller's thread). Every task in that timer shares the same thread. |
||
|
|
|
|
There is a single thread per Timer, so the answer to your question is yes |
||
|
|
|
|
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. |
||
|
|