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.

  • 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
    Modifier and Type
    Method
    Description
    void
    The callback for notifications that the notification bus is not operating.
    void
    up()
    The callback for notifications that the notification bus is operational.
  • 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.