Interface EntryReceiver

All Superinterfaces:
OsidReceiver

public interface EntryReceiver extends OsidReceiver

The dictionary entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted Entry objects.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedEntries(Id notificationId, IdList entryIds)
    The callback for notification of updated dictionary entries.
    void
    deletedEntries(Id notificationId, IdList entryIds)
    the callback for notification of deleted dictionary entries.
    void
    newEntries(Id notificationId, IdList entryIds)
    The callback for notifications of new dictionary entries.

    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

    • newEntries

      void newEntries(Id notificationId, IdList entryIds)
      The callback for notifications of new dictionary entries.
      Parameters:
      notificationId - the notification Id
      entryIds - the Ids of the Entries
      Compliance:
      mandatory - This method must be implemented.
    • changedEntries

      void changedEntries(Id notificationId, IdList entryIds)
      The callback for notification of updated dictionary entries.
      Parameters:
      notificationId - the notification Id
      entryIds - the Ids of the Entries
      Compliance:
      mandatory - This method must be implemented.
    • deletedEntries

      void deletedEntries(Id notificationId, IdList entryIds)
      the callback for notification of deleted dictionary entries.
      Parameters:
      notificationId - the notification Id
      entryIds - the Ids of the Entries
      Compliance:
      mandatory - This method must be implemented.