Interface AuctionProcessorReceiver

All Superinterfaces:
OsidReceiver

public interface AuctionProcessorReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
    The callback for notification of updated auction processors.
    void
    deletedAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
    The callback for notification of deleted auction processors.
    void
    newAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
    The callback for notifications of new auction processors.

    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

    • newAuctionProcessors

      void newAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
      The callback for notifications of new auction processors.
      Parameters:
      notificationId - the notification Id
      auctionProcessorIds - the Id of the new AuctionProcessors
      Compliance:
      mandatory - This method must be implemented.
    • changedAuctionProcessors

      void changedAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
      The callback for notification of updated auction processors.
      Parameters:
      notificationId - the notification Id
      auctionProcessorIds - the Id of the updated AuctionProcessors
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuctionProcessors

      void deletedAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
      The callback for notification of deleted auction processors.
      Parameters:
      notificationId - the notification Id
      auctionProcessorIds - the Id of the deleted AuctionProcessors
      Compliance:
      mandatory - This method must be implemented.