public interface NodeReceiver extends OsidReceiver
The node receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted nodes.
| Modifier and Type | Method and Description |
|---|---|
void |
changedNodes(Id notificationId,
IdList nodeIds)
The callback for notification of updated nodes.
|
void |
deletedNodes(Id notificationId,
IdList nodeIds)
The callback for notification of deleted nodes.
|
void |
newNodes(Id notificationId,
IdList nodeIds)
The callback for notifications of new nodes.
|
down, upvoid newNodes(Id notificationId, IdList nodeIds)
notificationId - the notification Id nodeIds - the Ids of the new Nodes mandatory - This method must be implemented. void changedNodes(Id notificationId, IdList nodeIds)
notificationId - the notification Id nodeIds - the Ids of the updated Nodes
mandatory - This method must be implemented.