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 |
changedNode(Id nodeId)
The callback for notification of updated nodes.
|
void |
deletedNode(Id nodeId)
The callback for notification of deleted nodes.
|
void |
newNode(Id nodeId)
The callback for notifications of new nodes.
|
down, up
void newNode(Id nodeId)
nodeId
- the Id
of the new Node
mandatory
- This method must be implemented. void changedNode(Id nodeId)
nodeId
- the Id
of the updated Node
mandatory
- This method must be implemented. void deletedNode(Id nodeId)
nodeId
- the Id
of the deleted Node
mandatory
- This method must be implemented.