| Package | Description |
|---|---|
| org.apache.openejb.core.timer |
| Modifier and Type | Class and Description |
|---|---|
class |
CalendarTimerData |
class |
IntervalTimerData |
class |
SingleActionTimerData |
| Modifier and Type | Method and Description |
|---|---|
TimerData |
TimerStore.createCalendarTimer(EjbTimerServiceImpl timerService,
String deploymentId,
Object primaryKey,
Method timeoutMethod,
javax.ejb.ScheduleExpression schedule,
javax.ejb.TimerConfig timerConfig,
boolean auto) |
TimerData |
MemoryTimerStore.createCalendarTimer(EjbTimerServiceImpl timerService,
String deploymentId,
Object primaryKey,
Method timeoutMethod,
javax.ejb.ScheduleExpression scheduleExpression,
javax.ejb.TimerConfig timerConfig,
boolean auto) |
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 |
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 |
TimerStore.getTimer(String deploymentId,
long timerId) |
TimerData |
MemoryTimerStore.getTimer(String deploymentId,
long timerId) |
| Modifier and Type | Method and Description |
|---|---|
Collection<TimerData> |
TimerStore.getTimers(String deploymentId) |
Collection<TimerData> |
MemoryTimerStore.getTimers(String deploymentId) |
Collection<TimerData> |
TimerStore.loadTimers(EjbTimerServiceImpl timerService,
String deploymentId) |
Collection<TimerData> |
MemoryTimerStore.loadTimers(EjbTimerServiceImpl timerService,
String deploymentId) |
| Modifier and Type | Method and Description |
|---|---|
void |
EjbTimerServiceImpl.addTimerData(TimerData timerData)
Returns a timerData to the TimerStore, if a cancel() is rolled back.
|
void |
TimerStore.addTimerData(TimerData timerData) |
void |
MemoryTimerStore.addTimerData(TimerData timerData) |
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) |
| Constructor and Description |
|---|
TimerImpl(TimerData timerData) |
Copyright © 1999–2014 The Apache Software Foundation. All rights reserved.