Interface BrokerConstrainerReceiver

All Superinterfaces:
OsidReceiver

public interface BrokerConstrainerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBrokerConstrainers(Id notificationId, IdList brokerConstrainerIds)
    The callback for notification of updated broker constrainers.
    void
    deletedBrokerConstrainers(Id notificationId, IdList brokerConstrainerIds)
    The callback for notification of deleted broker constrainers.
    void
    newBrokerConstrainers(Id notificationId, IdList brokerConstrainerIds)
    The callback for notifications of new broker 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

    • newBrokerConstrainers

      void newBrokerConstrainers(Id notificationId, IdList brokerConstrainerIds)
      The callback for notifications of new broker constrainers.
      Parameters:
      notificationId - the notification Id
      brokerConstrainerIds - the Id of the new BrokerConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • changedBrokerConstrainers

      void changedBrokerConstrainers(Id notificationId, IdList brokerConstrainerIds)
      The callback for notification of updated broker constrainers.
      Parameters:
      notificationId - the notification Id
      brokerConstrainerIds - the Id of the updated BrokerConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • deletedBrokerConstrainers

      void deletedBrokerConstrainers(Id notificationId, IdList brokerConstrainerIds)
      The callback for notification of deleted broker constrainers.
      Parameters:
      notificationId - the notification Id
      brokerConstrainerIds - the Id of the deleted BrokerConstrainers
      Compliance:
      mandatory - This method must be implemented.