Interface BrokerProcessorReceiver

All Superinterfaces:
OsidReceiver

public interface BrokerProcessorReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBrokerProcessors(Id notificationId, IdList brokerProcessorIds)
    The callback for notification of updated broker processors.
    void
    deletedBrokerProcessors(Id notificationId, IdList brokerProcessorIds)
    The callback for notification of deleted broker processors.
    void
    newBrokerProcessors(Id notificationId, IdList brokerProcessorIds)
    The callback for notifications of new broker processors.

    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

    • newBrokerProcessors

      void newBrokerProcessors(Id notificationId, IdList brokerProcessorIds)
      The callback for notifications of new broker processors.
      Parameters:
      notificationId - the notification Id
      brokerProcessorIds - the Id of the new BrokerProcessors
      Compliance:
      mandatory - This method must be implemented.
    • changedBrokerProcessors

      void changedBrokerProcessors(Id notificationId, IdList brokerProcessorIds)
      The callback for notification of updated broker processors.
      Parameters:
      notificationId - the notification Id
      brokerProcessorIds - the Id of the updated BrokerProcessors
      Compliance:
      mandatory - This method must be implemented.
    • deletedBrokerProcessors

      void deletedBrokerProcessors(Id notificationId, IdList brokerProcessorIds)
      The callback for notification of deleted broker processors.
      Parameters:
      notificationId - the notification Id
      brokerProcessorIds - the Id of the deleted BrokerProcessors
      Compliance:
      mandatory - This method must be implemented.