How soon after calling start() will the run() method be executed?
Created Sep 27, 2001
Christopher Schultz Your run() method is not guarenteed to run immediately after the Thread.start() method is called.
The Java Language Specification gives implementations lots of legroom with respect to the scheduling of threads. Your thread may start immediately, or it may start 5 minutes later.
Any decent implementation will have your thread start as soon as possible under the scheduling algorithm, so a five minute wait would be unreasonable.
-chris