Interface BidReceiver

All Superinterfaces:
OsidReceiver

public interface BidReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBids(Id notificationId, IdList bidIds)
    The callback for notification of updated bids.
    void
    deletedBids(Id notificationId, IdList bidIds)
    The callback for notification of deleted bids.
    void
    newBids(Id notificationId, IdList bidIds)
    The callback for notifications of new bids.

    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

    • newBids

      void newBids(Id notificationId, IdList bidIds)
      The callback for notifications of new bids.
      Parameters:
      notificationId - the notification Id
      bidIds - the Id of the new Bids
      Compliance:
      mandatory - This method must be implemented.
    • changedBids

      void changedBids(Id notificationId, IdList bidIds)
      The callback for notification of updated bids.
      Parameters:
      notificationId - the notification Id
      bidIds - the Id of the updated Bids
      Compliance:
      mandatory - This method must be implemented.
    • deletedBids

      void deletedBids(Id notificationId, IdList bidIds)
      The callback for notification of deleted bids.
      Parameters:
      notificationId - the notification Id
      bidIds - the Id of the deleted Bids
      Compliance:
      mandatory - This method must be implemented.