Uses of Class
javax.ejb.TimerConfig

Packages that use TimerConfig
com.caucho.ejb.timer   
javax.ejb   
 

Uses of TimerConfig in com.caucho.ejb.timer
 

Methods in com.caucho.ejb.timer with parameters of type TimerConfig
 Timer EjbTimerService.createCalendarTimer(ScheduleExpression schedule, TimerConfig timerConfig)
          Create a calendar-based timer based on the input schedule expression.
 Timer EjbTimerService.createIntervalTimer(java.util.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 EjbTimerService.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 EjbTimerService.createSingleActionTimer(java.util.Date expiration, TimerConfig timerConfig)
          Create a single-action timer that expires at a given point in time.
 Timer EjbTimerService.createSingleActionTimer(long duration, TimerConfig timerConfig)
          Create a single-action timer that expires after a specified duration.
 

Uses of TimerConfig in javax.ejb
 

Methods in javax.ejb with parameters of type TimerConfig
 Timer TimerService.createCalendarTimer(ScheduleExpression schedule, TimerConfig timerConfig)
          Create a calendar-based timer based on the input schedule expression.
 Timer TimerService.createIntervalTimer(java.util.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(java.util.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.