Uses of Interface
javax.ejb.Timer

Packages that use Timer
javax.ejb   
 

Uses of Timer in javax.ejb
 

Methods in javax.ejb that return Timer
 Timer TimerService.createTimer(long duration, Serializable info)
          Create a single-action timer that expires after a specified duration.
 Timer TimerService.createTimer(long initialDuration, long intervalDuration, Serializable info)
          Create an interval timer whose first expiration occurs after a specified duration, and whose subsequent expirations occur after a specified interval.
 Timer TimerService.createTimer(Date expiration, Serializable info)
          Create a single-action timer that expires at a given point in time.
 Timer TimerService.createTimer(Date initialExpiration, long intervalDuration, Serializable info)
          Create an interval timer whose first expiration occurs at a given point in time and whose subsequent expirations occur after a specified interval.
 Timer TimerHandle.getTimer()
          Obtain a reference to the timer represented by this handle.
 

Methods in javax.ejb with parameters of type Timer
 void TimedObject.ejbTimeout(Timer timer)
          Invoked by the EJB container upon timer expiration.
 



Copyright © 2002 JBoss Group, LLC. All Rights Reserved.