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 |
changedObstacle(Id obstacleId)
The callback for notification of updated obstacles.
|
void |
deletedObstacle(Id obstacleId)
The callback for notification of deleted obstacles.
|
void |
newObstacle(Id obstacleId)
The callback for notifications of new obstacles.
|
down, up
void newObstacle(Id obstacleId)
obstacleId
- the Id
of the new Obstacle
mandatory
- This method must be implemented. void changedObstacle(Id obstacleId)
obstacleId
- the Id
of the updated
Obstacle
mandatory
- This method must be implemented. void deletedObstacle(Id obstacleId)
obstacleId
- the Id
of the deleted
Obstacle
mandatory
- This method must be implemented.