public interface PackageReceiver extends OsidReceiver
The package receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Packages.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPackages(IdList packageIds)
The callback for notification of updated packages.
|
void |
deletedPackages(IdList packageIds)
The callback for notification of deleted packages.
|
void |
newPackages(IdList packageIds)
The callback for notifications of new packages.
|
down, upvoid newPackages(IdList packageIds)
packageIds - the Ids of the new Packages
mandatory - This method must be implemented. void changedPackages(IdList packageIds)
packageIds - the Ids of the updated
Packages mandatory - This method must be implemented. void deletedPackages(IdList packageIds)
packageIds - the Ids of the deleted
Packages mandatory - This method must be implemented.