public interface RecurringEventReceiver extends OsidReceiver
The recurring event receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
RecurringEvents.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRecurringEvents(Id notificationId,
IdList recurringEventIds)
The callback for notification of updated recurring events.
|
void |
deletedRecurringEvents(Id notificationId,
IdList recurringEventIds)
The callback for notification of deleted recurring events.
|
void |
newRecurringEvents(Id notificationId,
IdList recurringEventIds)
The callback for notifications of new recurring events.
|
down, upvoid newRecurringEvents(Id notificationId, IdList recurringEventIds)
notificationId - the notification Id recurringEventIds - the Ids of the new
RecurringEvents mandatory - This method must be implemented. void changedRecurringEvents(Id notificationId, IdList recurringEventIds)
notificationId - the notification Id recurringEventIds - the Ids of the updated
RecurringEvents mandatory - This method must be implemented. void deletedRecurringEvents(Id notificationId, IdList recurringEventIds)
notificationId - the notification Id recurringEventIds - the Ids of the deleted
RecurringEvents mandatory - This method must be implemented.