Interface BidEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface BidEnablerReceiver extends OsidReceiver

The bid receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted BidEnablers .

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBidEnablers(Id notificationId, IdList bidEnablerIds)
    The callback for notification of updated bid enablers.
    void
    deletedBidEnablers(Id notificationId, IdList bidEnablerIds)
    The callback for notification of deleted bid enablers.
    void
    newBidEnablers(Id notificationId, IdList bidEnablerIds)
    The callback for notifications of new bid enablers.

    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

    • newBidEnablers

      void newBidEnablers(Id notificationId, IdList bidEnablerIds)
      The callback for notifications of new bid enablers.
      Parameters:
      notificationId - the notification Id
      bidEnablerIds - the Id of the new BidEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedBidEnablers

      void changedBidEnablers(Id notificationId, IdList bidEnablerIds)
      The callback for notification of updated bid enablers.
      Parameters:
      notificationId - the notification Id
      bidEnablerIds - the Id of the updated BidEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedBidEnablers

      void deletedBidEnablers(Id notificationId, IdList bidEnablerIds)
      The callback for notification of deleted bid enablers.
      Parameters:
      notificationId - the notification Id
      bidEnablerIds - the Id of the deleted BidEnablers
      Compliance:
      mandatory - This method must be implemented.