Interface BrokerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface BrokerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBrokerEnablers(Id notificationId, IdList brokerEnablerIds)
    The callback for notification of updated broker enablers.
    void
    deletedBrokerEnablers(Id notificationId, IdList brokerEnablerIds)
    The callback for notification of deleted broker enablers.
    void
    newBrokerEnablers(Id notificationId, IdList brokerEnablerIds)
    The callback for notifications of new broker 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

    • newBrokerEnablers

      void newBrokerEnablers(Id notificationId, IdList brokerEnablerIds)
      The callback for notifications of new broker enablers.
      Parameters:
      notificationId - the notification Id
      brokerEnablerIds - the Id of the new BrokerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedBrokerEnablers

      void changedBrokerEnablers(Id notificationId, IdList brokerEnablerIds)
      The callback for notification of updated broker enablers.
      Parameters:
      notificationId - the notification Id
      brokerEnablerIds - the Id of the updated BrokerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedBrokerEnablers

      void deletedBrokerEnablers(Id notificationId, IdList brokerEnablerIds)
      The callback for notification of deleted broker enablers.
      Parameters:
      notificationId - the notification Id
      brokerEnablerIds - the Id of the deleted BrokerEnablers
      Compliance:
      mandatory - This method must be implemented.