public interface CanonicalUnitProcessorReceiver extends OsidReceiver
The canonical unit processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted canonical unit processors.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCanonicalUnitProcessors(Id notificationId,
IdList canonicalUnitProcessorIds)
The callback for notification of updated canonical unit processors.
|
void |
deletedCanonicalUnitProcessors(Id notificationId,
IdList canonicalUnitProcessorIds)
The callback for notification of deleted canonical unit processors.
|
void |
newCanonicalUnitProcessors(Id notificationId,
IdList canonicalUnitProcessorIds)
The callback for notifications of new canonical unit processors.
|
down, upvoid newCanonicalUnitProcessors(Id notificationId, IdList canonicalUnitProcessorIds)
notificationId - the notification Id canonicalUnitProcessorIds - the Ids of the new
CanonicalUnitProcessors mandatory - This method must be implemented. void changedCanonicalUnitProcessors(Id notificationId, IdList canonicalUnitProcessorIds)
notificationId - the notification Id canonicalUnitProcessorIds - the Ids of the
updated CanonicalUnitProcessors mandatory - This method must be implemented. void deletedCanonicalUnitProcessors(Id notificationId, IdList canonicalUnitProcessorIds)
notificationId - the notification Id canonicalUnitProcessorIds - the Ids of the
deleted CanonicalUnitProcessors mandatory - This method must be implemented.