Interface CompositionEnablerReceiver
- All Superinterfaces:
OsidReceiver
The composition enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted composition enablers.
Like all OsidReceivers, notifications are delivered to
CompositionEnablerReceiver serially and a receiver method is not invoked
again until any previous invocation has returned.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedCompositionEnablers(Id notificationId, IdList compositionEnablerIds) The callback for notification of updated composition enablers.voiddeletedCompositionEnablers(Id notificationId, IdList compositionEnablerIds) The callback for notification of deleted composition enablers.voidnewCompositionEnablers(Id notificationId, IdList compositionEnablerIds) The callback for notifications of new composition enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newCompositionEnablers
The callback for notifications of new composition enablers.- Parameters:
notificationId- the notificationIdcompositionEnablerIds- theIdsof the newCompositionEnablers- Compliance:
mandatory- This method must be implemented.
-
changedCompositionEnablers
The callback for notification of updated composition enablers.- Parameters:
notificationId- the notificationIdcompositionEnablerIds- theIdsof the updatedCompositionEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedCompositionEnablers
The callback for notification of deleted composition enablers.- Parameters:
notificationId- the notificationIdcompositionEnablerIds- theIdsof the deletedCompositionEnablers- Compliance:
mandatory- This method must be implemented.
-