public interface IntersectionReceiver extends OsidReceiver
The path receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Intersection
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedIntersections(IdList intersectionIds)
The callback for notification of updated intersections.
|
void |
deletedIntersections(IdList intersectionIds)
The callback for notification of deleted intersections.
|
void |
newIntersections(IdList intersectionIds)
The callback for notifications of new intersections.
|
down, upvoid newIntersections(IdList intersectionIds)
intersectionIds - the Ids of the new
Intersections mandatory - This method must be implemented. void changedIntersections(IdList intersectionIds)
intersectionIds - the Ids of the updated
Intersections mandatory - This method must be implemented. void deletedIntersections(IdList intersectionIds)
intersectionIds - the Ids of the deleted
Intersections mandatory - This method must be implemented.