public interface ReceivableService
ReceivableService
interface provides information about the event
types that may be received by a service installed in the SLEE.Modifier and Type | Interface and Description |
---|---|
static interface |
ReceivableService.ReceivableEvent
The
ReceiveableEvent interface identifies information about an
event type that may be received by SBBs in a service. |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Compare this
ReceivableService object for equality with another object. |
ReceivableService.ReceivableEvent[] |
getReceivableEvents()
Get information about the event types that can be received by SBBs in the service.
|
ServiceID |
getService()
Get the component identifier of the service represented by this
ReceivableService object. |
ServiceID getService()
ReceivableService
object.
This method is a non-transactional method.
ReceivableService.ReceivableEvent[] getReceivableEvents()
If different SBBs in the service have specified to receive the same event type
but with different resource options, then separate ReceivableEvent
objects are included in the returned array for each unique resource option.
This method is a non-transactional method.
ReceivableEvent
objects that contain information
about the event types that can be received by SBBs in the service.boolean equals(Object obj)
ReceivableService
object for equality with another object.equals
in class Object
obj
- the object to compare this with.true
if obj
is a ReceivableService
object and the service component identifier of this object equals the service
component identifier contained by obj
.Object.equals(Object)