Package | Description |
---|---|
javax.slee |
This package defines the APIs for SBB components, as well as common classes and interfaces for other SLEE subsystems.
|
javax.slee.connection |
This package defines interfaces for J2EE integration.
|
javax.slee.facilities |
This package defines the interfaces and classes for the SLEE facilities available to SBBs and resource adaptors.
|
javax.slee.profile |
This package defines the classes and interfaces for profiles and profile-related activities and events.
|
javax.slee.resource |
This package defines the classes and interfaces for resource adaptor components.
|
Modifier and Type | Method and Description |
---|---|
Address |
InitialEventSelector.getAddress()
Get the Address for the event.
|
Address |
EventContext.getAddress()
Get the address that was provided when the event was fired.
|
Modifier and Type | Method and Description |
---|---|
void |
InitialEventSelector.setAddress(Address address)
Set the Address for the event.
|
Modifier and Type | Method and Description |
---|---|
void |
SleeConnection.fireEvent(Object event,
EventTypeID eventType,
ExternalActivityHandle handle,
Address address)
Fires an event on an external activity.
|
Modifier and Type | Method and Description |
---|---|
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 |
---|---|
Address |
AddressProfile11CMP.getAddress()
Get the address for this profile.
|
Address[] |
AddressProfileCMP.getAddresses()
Deprecated.
Get the addresses for this profile.
|
Address |
ProfileAddedEvent.getProfileAddress()
Get the address of the profile that was added.
|
Address |
ProfileRemovedEvent.getProfileAddress()
Get the address of the profile that was removed.
|
Address |
ProfileUpdatedEvent.getProfileAddress()
Get the address of the profile that was updated.
|
Address |
ProfileID.toAddress()
Get an
Address object containing the address form of the profile
identified by this profile identifier. |
Modifier and Type | Method and Description |
---|---|
void |
AddressProfile11CMP.setAddress(Address address)
Set the address for this profile.
|
void |
AddressProfileCMP.setAddresses(Address[] addresses)
Deprecated.
Set the addresses for this profile.
|
Constructor and Description |
---|
ProfileID(Address address)
Create a
ProfileID object from an address. |
Modifier and Type | Method and Description |
---|---|
void |
ResourceAdaptor.eventProcessingFailed(ActivityHandle handle,
FireableEventType eventType,
Object event,
Address address,
ReceivableService service,
int flags,
FailureReason reason)
The SLEE invokes this method on a resource adaptor object to inform it that an
event it fired to the SLEE could not be processed successfully.
|
void |
ResourceAdaptor.eventProcessingSuccessful(ActivityHandle handle,
FireableEventType eventType,
Object event,
Address address,
ReceivableService service,
int flags)
The SLEE invokes this method on a resource adaptor object to inform it that an
event it fired to the SLEE has been processed successfully.
|
void |
ResourceAdaptor.eventUnreferenced(ActivityHandle handle,
FireableEventType eventType,
Object event,
Address address,
ReceivableService service,
int flags)
The SLEE invokes this method on a resource adaptor object when the event object
for an event fired by the resource adaptor is no longer referenced by the SLEE.
|
void |
SleeEndpoint.fireEvent(ActivityHandle handle,
FireableEventType eventType,
Object event,
Address address,
ReceivableService service)
Fire an event on an activity to the SLEE.
|
void |
SleeEndpoint.fireEvent(ActivityHandle handle,
FireableEventType eventType,
Object event,
Address address,
ReceivableService service,
int eventFlags)
Fire an event on an activity to the SLEE.
|
void |
SleeEndpoint.fireEventTransacted(ActivityHandle handle,
FireableEventType eventType,
Object event,
Address address,
ReceivableService service)
Fire an event on an activity to the SLEE.
|
void |
SleeEndpoint.fireEventTransacted(ActivityHandle handle,
FireableEventType eventType,
Object event,
Address address,
ReceivableService service,
int eventFlags)
Fire an event on an activity to the SLEE.
|