Package | Description |
---|---|
javax.slee.facilities |
This package defines the interfaces and classes for the SLEE facilities available to SBBs and resource adaptors.
|
Modifier and Type | Method and Description |
---|---|
TimerID |
TimerEvent.getTimerID()
Get the timer ID of the timer that fired this event.
|
TimerID |
TimerFacility.setTimer(ActivityContextInterface aci,
Address address,
long startTime,
long period,
int numRepetitions,
TimerOptions options)
Set a periodic timer.
|
TimerID |
TimerFacility.setTimer(ActivityContextInterface aci,
Address address,
long expireTime,
TimerOptions options)
Set a non-periodic timer.
|
Modifier and Type | Method and Description |
---|---|
void |
TimerFacility.cancelTimer(TimerID timerID)
Cancel a previously set timer.
|
ActivityContextInterface |
TimerFacility.getActivityContextInterface(TimerID timerID)
Get a reference to the Activity Context on which a timer was set.
|