public interface AuctionHouseReceiver extends OsidReceiver
The auction house receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
AuctionHouse objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAuctionHouses(Id notificationId,
IdList auctionHouseIds)
The callback for notification of updated auction house.
|
void |
changedChildOfAuctionHouses(Id notificationId,
IdList auctionHouseIds)
The callback for notifications of changes to children of auction house
hierarchy nodes.
|
void |
deletedAuctionHouses(Id notificationId,
IdList auctionHouseIds)
The callback for notification of deleted auction houses.
|
void |
newAuctionHouses(Id notificationId,
IdList auctionHouseIds)
The callback for notifications of new auction houses.
|
down, upvoid newAuctionHouses(Id notificationId, IdList auctionHouseIds)
notificationId - the notification Id auctionHouseIds - the Id of the new
AuctionHouses mandatory - This method must be implemented. void changedAuctionHouses(Id notificationId, IdList auctionHouseIds)
notificationId - the notification Id auctionHouseIds - the Id of the updated
AuctionHouses mandatory - This method must be implemented. void deletedAuctionHouses(Id notificationId, IdList auctionHouseIds)
notificationId - the notification Id auctionHouseIds - the Id of the deleted
AuctionHouses mandatory - This method must be implemented. void changedChildOfAuctionHouses(Id notificationId, IdList auctionHouseIds)
notificationId - the notification Id auctionHouseIds - the Ids of the
AuctionHouses whose children have changedmandatory - This method must be implemented.