Interface EngineReceiver
- All Superinterfaces:
OsidReceiver
The engine receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Engine
objects.
Like all OsidReceivers, notifications are delivered to
EngineReceiver serially and a receiver method is not invoked again until
any previous invocation has returned.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedChildOfEngines(Id notificationId, IdList engineId) The callback for notifications of changes to children of engine hierarchy nodes.voidchangedEngine(Id notificationId, Id engineId) The callback for notification of updated engines.voiddeletedEngine(Id notificationId, Id engineId) the callback for notification of deleted engines.voidThe callback for notifications of new engines.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newEngine
-
changedEngine
-
deletedEngine
-
changedChildOfEngines
The callback for notifications of changes to children of engine hierarchy nodes.- Parameters:
notificationId- the notificationIdengineId- theIdsof theEngineswhose children have changed- Compliance:
mandatory- This method must be implemented.
-