Interface ParameterReceiver

All Superinterfaces:
OsidReceiver

public interface ParameterReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedParameters(Id notificationId, IdList parameterIds)
    The callback for notification of updated parameters.
    void
    deletedParameters(Id notificationId, IdList parameterIds)
    the callback for notification of deleted parameters.
    void
    newParameters(Id notificationId, IdList parameterIds)
    The callback for notifications of new parameters.

    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

    • newParameters

      void newParameters(Id notificationId, IdList parameterIds)
      The callback for notifications of new parameters.
      Parameters:
      notificationId - the notification Id
      parameterIds - the Ids of the new Parameters
      Compliance:
      mandatory - This method must be implemented.
    • changedParameters

      void changedParameters(Id notificationId, IdList parameterIds)
      The callback for notification of updated parameters.
      Parameters:
      notificationId - the notification Id
      parameterIds - the Ids of the updated Parameters
      Compliance:
      mandatory - This method must be implemented.
    • deletedParameters

      void deletedParameters(Id notificationId, IdList parameterIds)
      the callback for notification of deleted parameters.
      Parameters:
      notificationId - the notification Id
      parameterIds - the Ids of the deleted Parameters
      Compliance:
      mandatory - This method must be implemented.