public interface ModuleReceiver extends OsidReceiver
The module receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted modules.
| Modifier and Type | Method and Description |
|---|---|
void |
changedModules(Id notificationId,
IdList moduleIds)
The callback for notifications of updated modules.
|
void |
deletedModules(Id notificationId,
IdList moduleIds)
the callback for notification of deleted modules.
|
void |
newModules(Id notificationId,
IdList moduleIds)
The callback for notifications of new modules.
|
down, upvoid newModules(Id notificationId, IdList moduleIds)
notificationId - the notification Id moduleIds - the Ids of the new modulesmandatory - This method must be implemented. void changedModules(Id notificationId, IdList moduleIds)
notificationId - the notification Id moduleIds - the Ids of the updated modulesmandatory - This method must be implemented.