Package | Description |
---|---|
javax.slee.facilities |
This package defines the interfaces and classes for the SLEE facilities available to SBBs and resource adaptors.
|
javax.slee.resource |
This package defines the classes and interfaces for resource adaptor components.
|
Modifier and Type | Method and Description |
---|---|
ReceivableService |
ServiceLookupFacility.getReceivableService(ServiceID service)
Get information about the event types that a service may receive.
|
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.
|
void |
ResourceAdaptor.serviceActive(ReceivableService serviceInfo)
The SLEE invokes this method on a resource adaptor object when a service that is
interested in events generated by this resource adaptor has transitioned to the
Active state.
|
void |
ResourceAdaptor.serviceInactive(ReceivableService serviceInfo)
The SLEE invokes this method on a resource adaptor object when a service that is
interested in events generated by this resource adaptor has transitioned from the
Stopping state to the Inactive state.
|
void |
ResourceAdaptor.serviceStopping(ReceivableService serviceInfo)
The SLEE invokes this method on a resource adaptor object when a service that is
interested in events generated by this resource adaptor has transitioned to the
Stopping state.
|