public interface AuctionReceiver extends OsidReceiver
The auction receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Auction
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAuctions(Id notificationId,
IdList auctionIds)
The callback for notification of updated auctions.
|
void |
deletedAuctions(Id notificationId,
IdList auctionIds)
The callback for notification of deleted auctions.
|
void |
newAuctions(Id notificationId,
IdList auctionIds)
The callback for notifications of new auctions.
|
down, upvoid newAuctions(Id notificationId, IdList auctionIds)
notificationId - the notification Id auctionIds - the Id of the new Auctions
mandatory - This method must be implemented. void changedAuctions(Id notificationId, IdList auctionIds)
notificationId - the notification Id auctionIds - the Id of the updated
Auctions mandatory - This method must be implemented.