Page 1 of 1

Re: About Question enthuware.oce-ejbd.v6.2.433 :

Posted: Thu Apr 24, 2014 8:46 pm
by evefuji
the timers obtained in getTimers are only of current client or of all applications?

Re: About Question enthuware.oce-ejbd.v6.2.433 :

Posted: Sat Apr 26, 2014 10:20 am
by admin
It returns the Timers associated with the bean. Please see this: http://docs.oracle.com/javaee/6/api/jav ... #getTimers()

Re: About Question enthuware.oce-ejbd.v6.2.433 :

Posted: Mon May 05, 2014 7:31 pm
by evefuji
but, if the bean is stateless, the timer "of bean" is only that client, of this unique call or the all clients? Considering that stateless bean not maintain state between calls, the container not ensure the same bean not serve multiples clients.

Re: About Question enthuware.oce-ejbd.v6.2.433 :

Posted: Mon May 05, 2014 8:17 pm
by admin
Timers are for a bean not for a client. So it will return all the timers. BTW, only a stateless or a singleton bean can use timers.