Interface BrokerProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface BrokerProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBrokerProcessorEnablers(Id notificationId, IdList brokerProcessorEnablerIds)
    The callback for notification of updated broker processor enablers.
    void
    deletedBrokerProcessorEnablers(Id notificationId, IdList brokerProcessorEnablerIds)
    The callback for notification of deleted broker processor enablers.
    void
    newBrokerProcessorEnablers(Id notificationId, IdList brokerProcessorEnablerIds)
    The callback for notifications of new broker processor 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

    • newBrokerProcessorEnablers

      void newBrokerProcessorEnablers(Id notificationId, IdList brokerProcessorEnablerIds)
      The callback for notifications of new broker processor enablers.
      Parameters:
      notificationId - the notification Id
      brokerProcessorEnablerIds - the Id of the new BrokerProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedBrokerProcessorEnablers

      void changedBrokerProcessorEnablers(Id notificationId, IdList brokerProcessorEnablerIds)
      The callback for notification of updated broker processor enablers.
      Parameters:
      notificationId - the notification Id
      brokerProcessorEnablerIds - the Id of the updated BrokerProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedBrokerProcessorEnablers

      void deletedBrokerProcessorEnablers(Id notificationId, IdList brokerProcessorEnablerIds)
      The callback for notification of deleted broker processor enablers.
      Parameters:
      notificationId - the notification Id
      brokerProcessorEnablerIds - the Id of the deleted BrokerProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.