Enterprise JavaBeans(TM) 3.1 API 1.0.2.Final-redhat-1

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.createCalendarTimer(ScheduleExpression schedule)
          Create a calendar-based timer based on the input schedule expression.
 Timer TimerService.createCalendarTimer(ScheduleExpression schedule, TimerConfig timerConfig)
          Create a calendar-based timer based on the input schedule expression.
 Timer TimerService.createIntervalTimer(Date initialExpiration, long intervalDuration, TimerConfig timerConfig)
          Create an interval timer whose first expiration occurs at a given point in time and whose subsequent expirations occur after a specified interval.
 Timer TimerService.createIntervalTimer(long initialDuration, long intervalDuration, TimerConfig timerConfig)
          Create an interval timer whose first expiration occurs after a specified duration, and whose subsequent expirations occur after a specified interval.
 Timer TimerService.createSingleActionTimer(Date expiration, TimerConfig timerConfig)
          Create a single-action timer that expires at a given point in time.
 Timer TimerService.createSingleActionTimer(long duration, TimerConfig timerConfig)
          Create a single-action timer that expires after a specified duration.
 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 TimerService.createTimer(Date expiration, Serializable info)
          Create a single-action timer that expires at a given point in time.
 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(long duration, Serializable info)
          Create a single-action timer that expires after a specified duration.
 Timer TimerHandle.getTimer()
          Obtain a reference to the timer represented by this handle.
 

Methods in javax.ejb that return types with arguments of type Timer
 Collection<Timer> TimerService.getTimers()
          Get all the active timers associated with this bean.
 

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


Enterprise JavaBeans(TM) 3.1 API 1.0.2.Final-redhat-1

Copyright © 2012 JBoss by Red Hat. All Rights Reserved.