Interface OffsetEventEnablerReceiver
- All Superinterfaces:
OsidReceiver
The offset event enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted offset event enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds) The callback for notification of updated offset event enablers.voiddeletedOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds) The callback for notification of deleted offset event enablers.voidnewOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds) The callback for notifications of new offset event enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newOffsetEventEnablers
The callback for notifications of new offset event enablers.- Parameters:
notificationId- the notificationIdoffsetEventEnablerIds- theIdof the newOffsetEventEnablers- Compliance:
mandatory- This method must be implemented.
-
changedOffsetEventEnablers
The callback for notification of updated offset event enablers.- Parameters:
notificationId- the notificationIdoffsetEventEnablerIds- theIdof the updatedOffsetEventEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedOffsetEventEnablers
The callback for notification of deleted offset event enablers.- Parameters:
notificationId- the notificationIdoffsetEventEnablerIds- theIdof the deletedOffsetEventEnablers- Compliance:
mandatory- This method must be implemented.
-