Interface ResourceLocationReceiver
- All Superinterfaces:
OsidReceiver
The resource location receiver is the consumer supplied interface for receiving notifications pertaining to location changes of resources.
-
Method Summary
Modifier and TypeMethodDescriptionvoidenteredLocation(Id notificationId, Id locationId, Id resourceId) The callback for notifications of resources entering locations.voidexitedLocation(Id notificationId, Id routeId, Id resourceId) The callback for notifications of resources exiting locations.voidnewResourceCoordinate(Id notificationId, Coordinate coordinate, Id resourceId) The callback for notifications of resources changing coordinates.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
enteredLocation
The callback for notifications of resources entering locations.- Parameters:
notificationId- the notificationIdlocationId- theIdof theLocationresourceId- theIdof theResource- Compliance:
mandatory- This method must be implemented.
-
exitedLocation
The callback for notifications of resources exiting locations.- Parameters:
notificationId- the notificationIdrouteId- theIdof theLocationresourceId- theIdof theResource- Compliance:
mandatory- This method must be implemented.
-
newResourceCoordinate
The callback for notifications of resources changing coordinates.- Parameters:
notificationId- the notificationIdcoordinate- the new coordinateresourceId- theIdof theResource- Compliance:
mandatory- This method must be implemented.
-