JBossTimer.java | Class | A clone of the JBossMX javax.management.timer.Timer service.
There are indications that the jdk5 javax.management.timer.Timer
uses internally a single-threaded implementation for executing
scheduled tasks, so scheduling of multiple tasks is affected
when moving from jdk1.4 and the jboss implementation of Timer,
to a jdk5 runtime.
The JBossMX Timer implementation in contrast uses a dynamically
extensible thread pool to execute scheduled tasks. |