Interface BrokerReceiver

All Superinterfaces:
OsidReceiver

public interface BrokerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBrokers(Id notificationId, IdList brokerIds)
    The callback for notification of updated broker.
    void
    deletedBrokers(Id notificationId, IdList brokerIds)
    The callback for notification of deleted brokers.
    void
    newBrokers(Id notificationId, IdList brokerIds)
    The callback for notifications of new brokers.

    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

    • newBrokers

      void newBrokers(Id notificationId, IdList brokerIds)
      The callback for notifications of new brokers.
      Parameters:
      notificationId - the notification Id
      brokerIds - the Ids of the new Brokers
      Compliance:
      mandatory - This method must be implemented.
    • changedBrokers

      void changedBrokers(Id notificationId, IdList brokerIds)
      The callback for notification of updated broker.
      Parameters:
      notificationId - the notification Id
      brokerIds - the Ids of the updated Brokers
      Compliance:
      mandatory - This method must be implemented.
    • deletedBrokers

      void deletedBrokers(Id notificationId, IdList brokerIds)
      The callback for notification of deleted brokers.
      Parameters:
      notificationId - the notification Id
      brokerIds - the Ids of the deleted Brokers
      Compliance:
      mandatory - This method must be implemented.