public interface EngineReceiver extends OsidReceiver
The engine receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Engine
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfEngines(Id notificationId,
IdList engineIds)
The callback for notifications of changes to children of engine
hierarchy nodes.
|
void |
changedEngines(Id notificationId,
IdList engineIds)
The callback for notification of updated engines.
|
void |
deletedEngines(Id notificationId,
IdList engineIds)
the callback for notification of deleted engines.
|
void |
newEngines(Id notificationId,
IdList engineIds)
The callback for notifications of new engines.
|
down, upvoid newEngines(Id notificationId, IdList engineIds)
notificationId - the notification Id engineIds - the Ids of the new Engines
mandatory - This method must be implemented. void changedEngines(Id notificationId, IdList engineIds)
notificationId - the notification Id engineIds - the Ids of the updated Engines
mandatory - This method must be implemented. void deletedEngines(Id notificationId, IdList engineIds)
notificationId - the notification Id engineIds - the Ids of the registered
Engines mandatory - This method must be implemented. void changedChildOfEngines(Id notificationId, IdList engineIds)
notificationId - the notification Id engineIds - the Ids of the Engines
whose children have changedmandatory - This method must be implemented.