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 engineId)
The callback for notifications of changes to children of engine
hierarchy nodes.
|
void |
changedEngine(Id notificationId,
Id engineId)
The callback for notification of updated engines.
|
void |
deletedEngine(Id notificationId,
Id engineId)
the callback for notification of deleted engines.
|
void |
newEngine(Id notificationId,
Id engineId)
The callback for notifications of new engines.
|
down, upvoid newEngine(Id notificationId, Id engineId)
notificationId - the notification Id engineId - the Id of the new Engine
mandatory - This method must be implemented. void changedEngine(Id notificationId, Id engineId)
notificationId - the notification Id engineId - the Id of the updated Engine
mandatory - This method must be implemented. void deletedEngine(Id notificationId, Id engineId)
notificationId - the notification Id engineId - the Id of the registered Engine
mandatory - This method must be implemented. void changedChildOfEngines(Id notificationId, IdList engineId)
notificationId - the notification Id engineId - the Ids of the Engines
whose children have changedmandatory - This method must be implemented.