public interface ScheduleSlotReceiver extends OsidReceiver
The schedule slot receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
ScheduleSlots.
| Modifier and Type | Method and Description |
|---|---|
void |
changedScheduleSlots(Id notificationId,
IdList scheduleSlotIds)
The callback for notification of updated schedule slots.
|
void |
deletedScheduleSlots(Id notificationId,
IdList scheduleSlotIds)
The callback for notification of deleted schedule slots.
|
void |
newScheduleSlots(Id notificationId,
IdList scheduleSlotIds)
The callback for notifications of new schedule slots.
|
down, upvoid newScheduleSlots(Id notificationId, IdList scheduleSlotIds)
notificationId - the notification Id scheduleSlotIds - the Ids of the new
ScheduleSlots mandatory - This method must be implemented. void changedScheduleSlots(Id notificationId, IdList scheduleSlotIds)
notificationId - the notification Id scheduleSlotIds - the Ids of the updated
ScheduleSlots mandatory - This method must be implemented. void deletedScheduleSlots(Id notificationId, IdList scheduleSlotIds)
notificationId - the notification Id scheduleSlotIds - the Ids of the deleted
ScheduleSlots mandatory - This method must be implemented.