public interface OffsetEventEnablerReceiver extends OsidReceiver
The offset event enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted offset event enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedOffsetEventEnablers(Id notificationId,
IdList offsetEventEnablerIds)
The callback for notification of updated offset event enablers.
|
void |
deletedOffsetEventEnablers(Id notificationId,
IdList offsetEventEnablerIds)
The callback for notification of deleted offset event enablers.
|
void |
newOffsetEventEnablers(Id notificationId,
IdList offsetEventEnablerIds)
The callback for notifications of new offset event enablers.
|
down, upvoid newOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
notificationId - the notification Id offsetEventEnablerIds - the Id of the new
OffsetEventEnablers mandatory - This method must be implemented. void changedOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
notificationId - the notification Id offsetEventEnablerIds - the Id of the updated
OffsetEventEnablers mandatory - This method must be implemented. void deletedOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
notificationId - the notification Id offsetEventEnablerIds - the Id of the deleted
OffsetEventEnablers mandatory - This method must be implemented.