Interface ObstacleReceiver
- All Superinterfaces:
OsidReceiver
The obstacle receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted obstacle.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedObstacles(IdList obstacleIds) The callback for notification of updated obstacles.voiddeletedObstacles(IdList obstacleIds) The callback for notification of deleted obstacles.voidnewObstacles(IdList obstacleIds) The callback for notifications of new obstacles.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newObstacles
The callback for notifications of new obstacles.- Parameters:
obstacleIds- theIdsof the newObstacles- Compliance:
mandatory- This method must be implemented.
-
changedObstacles
The callback for notification of updated obstacles.- Parameters:
obstacleIds- theIdsof the updatedObstacles- Compliance:
mandatory- This method must be implemented.
-
deletedObstacles
The callback for notification of deleted obstacles.- Parameters:
obstacleIds- theIdsof the deletedObstacles- Compliance:
mandatory- This method must be implemented.
-