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 MemoryTimerStore.createCalendarTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, javax.ejb.ScheduleExpression scheduleExpression, javax.ejb.TimerConfig timerConfig, boolean auto)
           
 TimerData TimerStore.createCalendarTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, javax.ejb.ScheduleExpression schedule, javax.ejb.TimerConfig timerConfig, boolean auto)
           
 TimerData MemoryTimerStore.createIntervalTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date initialExpiration, long intervalDuration, 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.createSingleActionTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date expiration, javax.ejb.TimerConfig timerConfig)
           
 TimerData TimerStore.createSingleActionTimer(EjbTimerServiceImpl timerService, String deploymentId, Object primaryKey, Method timeoutMethod, Date expiration, javax.ejb.TimerConfig timerConfig)
           
 TimerData MemoryTimerStore.getTimer(String deploymentId, long timerId)
           
 TimerData TimerStore.getTimer(String deploymentId, long timerId)
           
 

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

Methods in org.apache.openejb.core.timer with parameters of type TimerData
 void MemoryTimerStore.addTimerData(TimerData timerData)
           
 void TimerStore.addTimerData(TimerData timerData)
           
 void EjbTimerServiceImpl.addTimerData(TimerData timerData)
          Returns a timerData to the TimerStore, if a cancel() is 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 MemoryTimerStore.updateIntervalTimer(TimerData timerData)
           
 void TimerStore.updateIntervalTimer(TimerData timerData)
           
 

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



Copyright © 1999–2015 The Apache Software Foundation. All rights reserved.