Uses of Class
org.apache.openejb.core.timer.TimerData

Packages that use TimerData
org.apache.openejb.core.timer   
 

Uses of TimerData in org.apache.openejb.core.timer
 

Subclasses of TimerData in org.apache.openejb.core.timer
 class CalendarTimerData
           
 class IntervalTimerData
           
 class SingleActionTimerData
           
 

Methods in org.apache.openejb.core.timer that return TimerData
 TimerData TimerStore.createCalendarTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, javax.ejb.ScheduleExpression schedule, javax.ejb.TimerConfig timerConfig)
           
 TimerData MemoryTimerStore.createCalendarTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, javax.ejb.ScheduleExpression scheduleExpression, javax.ejb.TimerConfig timerConfig)
           
 TimerData DatabaseTimerStore.createCalendarTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, javax.ejb.ScheduleExpression schedule, javax.ejb.TimerConfig timerConfig)
           
 TimerData TimerStore.createIntervalTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date initialExpiration, long intervalDuration, javax.ejb.TimerConfig timerConfig)
           
 TimerData MemoryTimerStore.createIntervalTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date initialExpiration, long intervalDuration, javax.ejb.TimerConfig timerConfig)
           
 TimerData DatabaseTimerStore.createIntervalTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date initialExpiration, long intervalDuration, javax.ejb.TimerConfig timerConfig)
           
 TimerData TimerStore.createSingleActionTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date expiration, javax.ejb.TimerConfig timerConfig)
           
 TimerData MemoryTimerStore.createSingleActionTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date expiration, javax.ejb.TimerConfig timerConfig)
           
 TimerData DatabaseTimerStore.createSingleActionTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date expiration, javax.ejb.TimerConfig timerConfig)
           
 TimerData DatabaseTimerStore.createTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Object info, Date expiration, long intervalDuration)
           
 TimerData TimerStore.getTimer(String deploymentId, long timerId)
           
 TimerData MemoryTimerStore.getTimer(String deploymentId, long timerId)
           
 TimerData DatabaseTimerStore.getTimer(String deploymentId, long timerId)
           
 

Methods in org.apache.openejb.core.timer that return types with arguments of type TimerData
 Collection<TimerData> TimerStore.getTimers(String deploymentId)
           
 Collection<TimerData> MemoryTimerStore.getTimers(String deploymentId)
           
 Collection<TimerData> DatabaseTimerStore.getTimers(String deploymentId)
           
 Collection<TimerData> TimerStore.loadTimers(EjbTimerServiceImpl timerService, String deploymentId)
           
 Collection<TimerData> MemoryTimerStore.loadTimers(EjbTimerServiceImpl timerService, String deploymentId)
           
 Collection<TimerData> DatabaseTimerStore.loadTimers(EjbTimerServiceImpl timerService, String deploymentId)
           
 

Methods in org.apache.openejb.core.timer with parameters of type TimerData
 void TimerStore.addTimerData(TimerData timerData)
           
 void MemoryTimerStore.addTimerData(TimerData timerData)
           
 void EjbTimerServiceImpl.addTimerData(TimerData timerData)
          Returns a timerData to the TimerStore, if a cancel() is rolled back.
 void DatabaseTimerStore.addTimerData(TimerData timerData)
          Used to restore a Timer that was cancelled, but the Transaction has been rolled back.
 void EjbTimerServiceImpl.cancelled(TimerData timerData)
          Call back from TimerData and ejbTimeout when a timer has been cancelled (or is complete) and should be removed from stores.
 void EjbTimerServiceImpl.ejbTimeout(TimerData timerData)
          This method calls the ejbTimeout method and starts a transaction if the timeout is transacted.
 void EjbTimerServiceImpl.schedule(TimerData timerData)
          Called from TimerData and start when a timer should be scheduled with the java.util.Timer.
 void TimerStore.updateIntervalTimer(TimerData timerData)
           
 void MemoryTimerStore.updateIntervalTimer(TimerData timerData)
           
 void DatabaseTimerStore.updateIntervalTimer(TimerData timerData)
           
 

Constructors in org.apache.openejb.core.timer with parameters of type TimerData
TimerImpl(TimerData timerData)
           
 



Copyright © 1999-2012 The Apache Software Foundation. All Rights Reserved.