public interface RouteReceiver extends OsidReceiver
The route receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Route
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedRoutes(Id notificationId,
Id routeIds)
The callback for notification of updated routes.
|
void |
deletedRoutes(Id notificationId,
Id routeIds)
The callback for notification of deleted routes.
|
void |
newRoutes(Id notificationId,
Id routeIds)
The callback for notifications of new routes.
|
down, up
void newRoutes(Id notificationId, Id routeIds)
notificationId
- the notification Id
routeIds
- the Ids
of the new Routes
mandatory
- This method must be implemented. void changedRoutes(Id notificationId, Id routeIds)
notificationId
- the notification Id
routeIds
- the Ids
of the updated Routes
mandatory
- This method must be implemented.