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 |
changedEvent(Id eventId)
The callback for notification of updated events.
|
void |
deletedEvent(Id eventId)
The callback for notification of deleted events.
|
void |
newEvent(Id eventId)
The callback for notifications of new events.
|
down, upvoid newEvent(Id eventId)
eventId - the Id of the new Event mandatory - This method must be implemented. void changedEvent(Id eventId)
eventId - the Id of the updated Event
mandatory - This method must be implemented. void deletedEvent(Id eventId)
eventId - the Id of the deleted Event
mandatory - This method must be implemented.