public interface EventReceiver extends OsidReceiver
The event receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Events.
Modifier and Type | Method and Description |
---|---|
void |
changedEvents(Id notificationId,
IdList eventIds)
The callback for notification of updated events.
|
void |
deletedEvents(Id notificationId,
IdList eventIds)
The callback for notification of deleted events.
|
void |
newEvents(Id notificationId,
IdList eventIds)
The callback for notifications of new events.
|
down, up
void newEvents(Id notificationId, IdList eventIds)
notificationId
- the notification Id
eventIds
- the Ids
of the new Events
mandatory
- This method must be implemented. void changedEvents(Id notificationId, IdList eventIds)
notificationId
- the notification Id
eventIds
- the Ids
of the updated Events
mandatory
- This method must be implemented.