Interface ValueReceiver

All Superinterfaces:
OsidReceiver

public interface ValueReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedValues(Id notificationId, IdList valueIds)
    The callback for notification of changed values.
    void
    deletedValues(Id notificationId, IdList valueIds)
    The callback for notification of removed values.
    void
    newValues(Id notificationId, IdList valueIds)
    The callback for notification of new values.

    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

    • newValues

      void newValues(Id notificationId, IdList valueIds)
      The callback for notification of new values.
      Parameters:
      notificationId - the notification Id
      valueIds - the Ids of the Values
      Compliance:
      mandatory - This method must be implemented.
    • changedValues

      void changedValues(Id notificationId, IdList valueIds)
      The callback for notification of changed values.
      Parameters:
      notificationId - the notification Id
      valueIds - the Ids of the Values
      Compliance:
      mandatory - This method must be implemented.
    • deletedValues

      void deletedValues(Id notificationId, IdList valueIds)
      The callback for notification of removed values.
      Parameters:
      notificationId - the notification Id
      valueIds - the Ids of the Values
      Compliance:
      mandatory - This method must be implemented.