public interface CanonicalUnitReceiver extends OsidReceiver
The canonical unit receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted canonical units.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCanonicalUnits(IdList canonicalUnitIds)
The callback for notifications of updated canonical units.
|
void |
deletedCanonicalUnits(IdList canonicalUnitIds)
the callback for notification of deleted canonical units.
|
void |
newCanonicalUnits(IdList canonicalUnitIds)
The callback for notifications of new canonical units.
|
down, upvoid newCanonicalUnits(IdList canonicalUnitIds)
canonicalUnitIds - the Ids of the new canonical
unitsmandatory - This method must be implemented. void changedCanonicalUnits(IdList canonicalUnitIds)
canonicalUnitIds - the Ids of the updated
canonical unitsmandatory - This method must be implemented. void deletedCanonicalUnits(IdList canonicalUnitIds)
canonicalUnitIds - the Ids of the deleted
canonical unitsmandatory - This method must be implemented.