public interface ModelReceiver extends OsidReceiver
The model receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted model objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedModels(IdList modelIds)
The callback for notification of updated models.
|
void |
deletedModels(IdList modelIds)
The callback for notification of deleted models.
|
void |
newModels(IdList modelIds)
The callback for notifications of new models.
|
down, upvoid newModels(IdList modelIds)
modelIds - the Ids of the new Models
mandatory - This method must be implemented. void changedModels(IdList modelIds)
modelIds - the Ids of the updated Models
mandatory - This method must be implemented. void deletedModels(IdList modelIds)
modelIds - the Ids of the deleted Models
mandatory - This method must be implemented.