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 |
changedAuctionHouse(Id auctionHouseId)
The callback for notification of updated auction house.
|
void |
deletedAncestorAuctionHouse(Id auctionHouseId,
Id ancestorId)
The callback for notifications of deleted auction house ancestors.
|
void |
deletedAuctionHouse(Id auctionHouseId)
The callback for notification of deleted auction houses.
|
void |
deletedDescendantAuctionHouse(Id auctionHouseId,
Id descendantId)
The callback for notifications of deleted auction house descendants.
|
void |
newAncestorAuctionHouse(Id auctionHouseId,
Id ancestorId)
The callback for notifications of new auction house ancestors.
|
void |
newAuctionHouse(Id auctionHouseId)
The callback for notifications of new auction houses.
|
void |
newDescendantAuctionHouse(Id auctionHouseId,
Id descendantId)
The callback for notifications of new auction house descendants.
|
down, upvoid newAuctionHouse(Id auctionHouseId)
auctionHouseId - the Id of the new
AuctionHouse mandatory - This method must be implemented. void newAncestorAuctionHouse(Id auctionHouseId, Id ancestorId)
auctionHouseId - the Id of the
AuctionHouse ancestorId - the Id of the new
AuctionHouse ancestormandatory - This method must be implemented. void newDescendantAuctionHouse(Id auctionHouseId, Id descendantId)
auctionHouseId - the Id of the
AuctionHouse descendantId - the Id of the new
AuctionHouse descendantmandatory - This method must be implemented. void changedAuctionHouse(Id auctionHouseId)
auctionHouseId - the Id of the updated
AuctionHouse mandatory - This method must be implemented. void deletedAuctionHouse(Id auctionHouseId)
auctionHouseId - the Id of the deleted
AuctionHouse mandatory - This method must be implemented. void deletedAncestorAuctionHouse(Id auctionHouseId, Id ancestorId)
auctionHouseId - the Id of the
AuctionHouse ancestorId - the Id of the removed
AuctionHouse ancestormandatory - This method must be implemented. void deletedDescendantAuctionHouse(Id auctionHouseId, Id descendantId)
auctionHouseId - the Id of the
AuctionHouse descendantId - the Id of the removed
AuctionHouse descendantmandatory - This method must be implemented.