public interface ObstacleReceiver extends OsidReceiver
The obstacle receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted obstacle.
| Modifier and Type | Method and Description |
|---|---|
void |
changedObstacles(IdList obstacleIds)
The callback for notification of updated obstacles.
|
void |
deletedObstacles(IdList obstacleIds)
The callback for notification of deleted obstacles.
|
void |
newObstacles(IdList obstacleIds)
The callback for notifications of new obstacles.
|
down, upvoid newObstacles(IdList obstacleIds)
obstacleIds - the Ids of the new Obstacles
mandatory - This method must be implemented. void changedObstacles(IdList obstacleIds)
obstacleIds - the Ids of the updated
Obstacles mandatory - This method must be implemented. void deletedObstacles(IdList obstacleIds)
obstacleIds - the Ids of the deleted
Obstacles mandatory - This method must be implemented.