public interface BuildingReceiver extends OsidReceiver
The building receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Building
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBuildings(IdList buildingIds)
The callback for notification of updated buildings.
|
void |
deletedBuildings(IdList buildingIds)
the callback for notification of deleted buildings.
|
void |
newBuildings(IdList buildingIds)
The callback for notifications of new buildings.
|
down, upvoid newBuildings(IdList buildingIds)
buildingIds - the Ids of the new Buildings
mandatory - This method must be implemented. void changedBuildings(IdList buildingIds)
buildingIds - the Ids of the updated
Buildings mandatory - This method must be implemented. void deletedBuildings(IdList buildingIds)
buildingIds - the Ids of the registered
Buildings mandatory - This method must be implemented.