public interface ScheduleReceiver extends OsidReceiver
The schedule receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Schedules.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSchedules(Id notificationId,
IdList scheduleIds)
The callback for notification of updated schedules.
|
void |
deletedSchedules(Id notificationId,
IdList scheduleIds)
The callback for notification of deleted schedules.
|
void |
newSchedules(Id notificationId,
IdList scheduleIds)
The callback for notifications of new schedules.
|
down, upvoid newSchedules(Id notificationId, IdList scheduleIds)
notificationId - the notification Id scheduleIds - the Ids of the new Schedules
mandatory - This method must be implemented. void changedSchedules(Id notificationId, IdList scheduleIds)
notificationId - the notification Id scheduleIds - the Ids of the updated
Schedules mandatory - This method must be implemented.