In Java EE 5, when using timers and the timer service, who handles the timeout invocation?
Can I be sure that the stateless session bean which created the timer wil be the one to handle its timeout (with a @Timeout annoateted method)? or there's no way of telling which bean (of the same type) will handle it?
Also, Is there any difference on that issue between Java EE 5 and 6?