public interface EdgeReceiver extends OsidReceiver
The edge receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Edge
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedEdges(Id notificationId,
IdList edgeIds)
The callback for notification of updated edges.
|
void |
deletedEdges(Id notificationId,
IdList edgeIds)
The callback for notification of deleted edges.
|
void |
newEdges(Id notificationId,
IdList edgeIds)
The callback for notifications of new edges.
|
down, upvoid newEdges(Id notificationId, IdList edgeIds)
notificationId - the notification IdedgeIds - the Ids of the new Edges mandatory - This method must be implemented. void changedEdges(Id notificationId, IdList edgeIds)
notificationId - the notification IdedgeIds - the Ids of the updated Edges
mandatory - This method must be implemented.