Interface PostEntryReceiver

All Superinterfaces:
OsidReceiver

public interface PostEntryReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedPostEntries(Id notificationId, IdList postEntryIds)
    The callback for notification of updated post entries.
    void
    deletedPostEntries(Id notificationId, IdList postEntryIds)
    the callback for notification of deleted post entries.
    void
    newPostEntries(Id notificationId, IdList postEntryIds)
    The callback for notifications of new post 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

    • newPostEntries

      void newPostEntries(Id notificationId, IdList postEntryIds)
      The callback for notifications of new post entries.
      Parameters:
      notificationId - the notification Id
      postEntryIds - the Ids of the new PostEntries
      Compliance:
      mandatory - This method must be implemented.
    • changedPostEntries

      void changedPostEntries(Id notificationId, IdList postEntryIds)
      The callback for notification of updated post entries.
      Parameters:
      notificationId - the notification Id
      postEntryIds - the Ids of the updated PostEntries
      Compliance:
      mandatory - This method must be implemented.
    • deletedPostEntries

      void deletedPostEntries(Id notificationId, IdList postEntryIds)
      the callback for notification of deleted post entries.
      Parameters:
      notificationId - the notification Id
      postEntryIds - the Ids of the deleted PostEntries
      Compliance:
      mandatory - This method must be implemented.