public interface AvailabilityReceiver extends OsidReceiver
The availability receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted availabilities.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAvailabilities(IdList availabilityIds)
The callback for notification of updated availabilities.
|
void |
deletedAvailabilities(IdList availabilityIds)
The callback for notification of deleted availabilities.
|
void |
newAvailabilities(IdList availabilityIds)
The callback for notifications of new availabilities.
|
down, upvoid newAvailabilities(IdList availabilityIds)
availabilityIds - the Ids of the new
Availabilities mandatory - This method must be implemented. void changedAvailabilities(IdList availabilityIds)
availabilityIds - the Ids of the updated
Availabilities mandatory - This method must be implemented. void deletedAvailabilities(IdList availabilityIds)
availabilityIds - the Ids of the deleted
Availabilities mandatory - This method must be implemented.