public interface CyclicTimePeriodReceiver extends OsidReceiver
The cyclic time period receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
CyclicTimePeriods.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCyclicTimePeriods(Id notificationId,
IdList cyclicTimePeriodIds)
The callback for notification of updated cyclic time periods.
|
void |
deletedCyclicTimePeriods(Id notificationId,
IdList cyclicTimePeriodIds)
The callback for notification of deleted cyclic time periods.
|
void |
newCyclicTimePeriods(Id notificationId,
IdList cyclicTimePeriodIds)
The callback for notifications of new cyclic time periods.
|
down, upvoid newCyclicTimePeriods(Id notificationId, IdList cyclicTimePeriodIds)
notificationId - the notification Id cyclicTimePeriodIds - the Id of the new
CyclicTimePeriods mandatory - This method must be implemented. void changedCyclicTimePeriods(Id notificationId, IdList cyclicTimePeriodIds)
notificationId - the notification Id cyclicTimePeriodIds - the Id of the updated
CyclicTimePeriods mandatory - This method must be implemented. void deletedCyclicTimePeriods(Id notificationId, IdList cyclicTimePeriodIds)
notificationId - the notification Id cyclicTimePeriodIds - the Id of the deleted
CyclicTimePeriods mandatory - This method must be implemented.