Interface ResourceRouteReceiver
- All Superinterfaces:
OsidReceiver
The resource route receiver is the consumer supplied interface for receiving notifications pertaining to changes of resources along routes.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcancelledRoute(Id notificationId, Id routeId, Id resourceId) The callback for notifications of resources cancelling routes.voidcompletedRoute(Id notificationId, Id routeId, Id resourceId) The callback for notifications of resources completing routes.voidnewRouteSegment(Id notificationId, Id routeSegmentId, Id resourceId) The callback for notifications of resources beginning new route segments.voidstartedRoute(Id notificationId, Id routeId, Id resourceId) The callback for notifications of resources starting on routes.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
startedRoute
-
completedRoute
The callback for notifications of resources completing routes.- Parameters:
notificationId- the notificationIdrouteId- theIdof theRouteresourceId- theIdof theResource- Compliance:
mandatory- This method must be implemented.
-
cancelledRoute
The callback for notifications of resources cancelling routes.- Parameters:
notificationId- the notificationIdrouteId- theIdof theRouteresourceId- theIdof theResource- Compliance:
mandatory- This method must be implemented.
-
newRouteSegment
The callback for notifications of resources beginning new route segments.- Parameters:
notificationId- the notificationIdrouteSegmentId- theIdof theRouteSegmentresourceId- theIdof theResource- Compliance:
mandatory- This method must be implemented.
-