Interface AuctionConstrainerReceiver

All Superinterfaces:
OsidReceiver

public interface AuctionConstrainerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
    The callback for notification of updated auction constrainers.
    void
    deletedAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
    The callback for notification of deleted auction constrainers.
    void
    newAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
    The callback for notifications of new auction constrainers.

    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

    • newAuctionConstrainers

      void newAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
      The callback for notifications of new auction constrainers.
      Parameters:
      notificationId - the notification Id
      auctionConstrainerIds - the Id of the new AuctionConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • changedAuctionConstrainers

      void changedAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
      The callback for notification of updated auction constrainers.
      Parameters:
      notificationId - the notification Id
      auctionConstrainerIds - the Id of the updated AuctionConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuctionConstrainers

      void deletedAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
      The callback for notification of deleted auction constrainers.
      Parameters:
      notificationId - the notification Id
      auctionConstrainerIds - the Id of the deleted AuctionConstrainers
      Compliance:
      mandatory - This method must be implemented.