I have 4 methods in my Timersession bean,lets say a(), b(), c() and d().
a()should be executed every 6 hourb()should be execute every 3 hourc()should be execute every 1 hour
How can I do this by using EJB 3.0 timer service?
|
|
Definitely, you can create multiple timers & can handle it in a single method. Sample code :
|
|||||||||
|
|
Schedule three separate timers, and use the "info" object to encode which method needs to be called from the @Timeout method. For example:
|
|||