Interface RelevancyReceiver

All Superinterfaces:
OsidReceiver

public interface RelevancyReceiver extends OsidReceiver

This receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted relevancies.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedRelevancies(Id notificationId, IdList relevancyIds)
    The callback for notification of updated relevancies.
    void
    deletedRelevancies(Id notificationId, IdList relevancyIds)
    The callback for notification of deleted relevancies.
    void
    newRelevancies(Id notificationId, IdList relevancyIds)
    The callback for notifications of new relevancies.

    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

    • newRelevancies

      void newRelevancies(Id notificationId, IdList relevancyIds)
      The callback for notifications of new relevancies.
      Parameters:
      notificationId - the notification Id
      relevancyIds - the Ids of the new Relevancies
      Compliance:
      mandatory - This method must be implemented.
    • changedRelevancies

      void changedRelevancies(Id notificationId, IdList relevancyIds)
      The callback for notification of updated relevancies.
      Parameters:
      notificationId - the notification Id
      relevancyIds - the Ids of the updated Relevancies
      Compliance:
      mandatory - This method must be implemented.
    • deletedRelevancies

      void deletedRelevancies(Id notificationId, IdList relevancyIds)
      The callback for notification of deleted relevancies.
      Parameters:
      notificationId - the notification Id
      relevancyIds - the Ids of the deleted Relevancies
      Compliance:
      mandatory - This method must be implemented.