public interface GraphReceiver extends OsidReceiver
The graph receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Graph
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfGraphs(Id notificationId,
IdList graphIds)
The callback for notifications of changes to children of graph
hierarchy nodes.
|
void |
changedGraphs(Id notificationId,
IdList graphIds)
The callback for notification of updated graph.
|
void |
deletedGraphs(Id notificationId,
IdList graphIds)
The callback for notification of deleted graphs.
|
void |
newGraphs(Id notificationId,
IdList graphIds)
The callback for notifications of new graphs.
|
down, upvoid newGraphs(Id notificationId, IdList graphIds)
notificationId - the notification Id graphIds - the Ids of the new Graphs
mandatory - This method must be implemented. void changedGraphs(Id notificationId, IdList graphIds)
notificationId - the notification Id graphIds - the Ids of the updated Graphs
mandatory - This method must be implemented. void deletedGraphs(Id notificationId, IdList graphIds)
notificationId - the notification Id graphIds - the Ids of the deleted Graphs
mandatory - This method must be implemented. void changedChildOfGraphs(Id notificationId, IdList graphIds)
notificationId - the notification Id graphIds - the Ids of the Graphs
whose children have changedmandatory - This method must be implemented.