Interface IntersectionReceiver
- All Superinterfaces:
OsidReceiver
The path receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Intersection
objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedIntersections(IdList intersectionIds) The callback for notification of updated intersections.voiddeletedIntersections(IdList intersectionIds) The callback for notification of deleted intersections.voidnewIntersections(IdList intersectionIds) The callback for notifications of new intersections.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newIntersections
The callback for notifications of new intersections.- Parameters:
intersectionIds- theIdsof the newIntersections- Compliance:
mandatory- This method must be implemented.
-
changedIntersections
The callback for notification of updated intersections.- Parameters:
intersectionIds- theIdsof the updatedIntersections- Compliance:
mandatory- This method must be implemented.
-
deletedIntersections
The callback for notification of deleted intersections.- Parameters:
intersectionIds- theIdsof the deletedIntersections- Compliance:
mandatory- This method must be implemented.
-