Interface BlogReceiver

All Superinterfaces:
OsidReceiver

public interface BlogReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBlogs(Id notificationId, IdList blogIds)
    The callback for notification of updated blogs.
    void
    changedChildOfBlogs(Id notificationId, IdList blogIds)
    The callback for notifications of changes to children of blog hierarchy nodes.
    void
    deletedBlogs(Id notificationId, IdList blogIds)
    The callback for notification of deleted blogs.
    void
    newBlogs(Id notificationId, IdList blogIds)
    The callback for notifications of new blogs.

    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

    • newBlogs

      void newBlogs(Id notificationId, IdList blogIds)
      The callback for notifications of new blogs.
      Parameters:
      notificationId - the notification Id
      blogIds - the Id of the new Blogs
      Compliance:
      mandatory - This method must be implemented.
    • changedBlogs

      void changedBlogs(Id notificationId, IdList blogIds)
      The callback for notification of updated blogs.
      Parameters:
      notificationId - the notification Id
      blogIds - the Id of the updated Blogs
      Compliance:
      mandatory - This method must be implemented.
    • deletedBlogs

      void deletedBlogs(Id notificationId, IdList blogIds)
      The callback for notification of deleted blogs.
      Parameters:
      notificationId - the notification Id
      blogIds - the Id of the deleted Blogs
      Compliance:
      mandatory - This method must be implemented.
    • changedChildOfBlogs

      void changedChildOfBlogs(Id notificationId, IdList blogIds)
      The callback for notifications of changes to children of blog hierarchy nodes.
      Parameters:
      notificationId - the notification Id
      blogIds - the Ids of the Blogs whose children have changed
      Compliance:
      mandatory - This method must be implemented.