Interface AuctionReceiver

All Superinterfaces:
OsidReceiver

public interface AuctionReceiver extends OsidReceiver

The auction receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted Auction objects.

Like all OsidReceivers, notifications are delivered to AuctionReceiver serially and a receiver method is not invoked again until any previous invocation has returned.

  • Method Summary

    Modifier and Type
    Method
    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.

    Methods inherited from interface OsidReceiver

    down, up
  • Method Details

    • newAuctions

      void newAuctions(Id notificationId, IdList auctionIds)
      The callback for notifications of new auctions.
      Parameters:
      notificationId - the notification Id
      auctionIds - the Id of the new Auctions
      Compliance:
      mandatory - This method must be implemented.
    • changedAuctions

      void changedAuctions(Id notificationId, IdList auctionIds)
      The callback for notification of updated auctions.
      Parameters:
      notificationId - the notification Id
      auctionIds - the Id of the updated Auctions
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuctions

      void deletedAuctions(Id notificationId, IdList auctionIds)
      The callback for notification of deleted auctions.
      Parameters:
      notificationId - the notification Id
      auctionIds - the Id of the deleted Auctions
      Compliance:
      mandatory - This method must be implemented.