public interface OffsetEventReceiver extends OsidReceiver
The event receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted OffsetEvents.
| Modifier and Type | Method and Description |
|---|---|
void |
changedOffsetEvents(Id notificationId,
IdList offsetEventIds)
The callback for notification of updated offset events.
|
void |
deletedOffsetEvents(Id notificationId,
IdList offsetEventIds)
The callback for notification of deleted offset events.
|
void |
newOffsetEvents(Id notificationId,
IdList offsetEventIds)
The callback for notifications of new offset events.
|
down, upvoid newOffsetEvents(Id notificationId, IdList offsetEventIds)
notificationId - the notification Id offsetEventIds - the Ids of the new
OffsetEvents mandatory - This method must be implemented. void changedOffsetEvents(Id notificationId, IdList offsetEventIds)
notificationId - the notification Id offsetEventIds - the Ids of the updated
OffsetEvents mandatory - This method must be implemented. void deletedOffsetEvents(Id notificationId, IdList offsetEventIds)
notificationId - the notification Id offsetEventIds - the Ids of the deleted
OffsetEvents mandatory - This method must be implemented.