Interface ParameterProcessorReceiver

All Superinterfaces:
OsidReceiver

public interface ParameterProcessorReceiver extends OsidReceiver

The parameter processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted parameter processors.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedParameterProcessors(Id notificationId, IdList parameterProcessorIds)
    The callback for notification of updated parameter processors.
    void
    deletedParameterProcessors(Id notificationId, IdList parameterProcessorIds)
    The callback for notification of deleted parameter processors.
    void
    newParameterProcessors(Id notificationId, IdList parameterProcessorIds)
    The callback for notifications of new parameter 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

    • newParameterProcessors

      void newParameterProcessors(Id notificationId, IdList parameterProcessorIds)
      The callback for notifications of new parameter processors.
      Parameters:
      notificationId - the notification Id
      parameterProcessorIds - the Ids of the new ParameterProcessors
      Compliance:
      mandatory - This method must be implemented.
    • changedParameterProcessors

      void changedParameterProcessors(Id notificationId, IdList parameterProcessorIds)
      The callback for notification of updated parameter processors.
      Parameters:
      notificationId - the notification Id
      parameterProcessorIds - the Ids of the updated ParameterProcessors
      Compliance:
      mandatory - This method must be implemented.
    • deletedParameterProcessors

      void deletedParameterProcessors(Id notificationId, IdList parameterProcessorIds)
      The callback for notification of deleted parameter processors.
      Parameters:
      notificationId - the notification Id
      parameterProcessorIds - the Ids of the deleted ParameterProcessors
      Compliance:
      mandatory - This method must be implemented.