Interface ActivityReceiver

All Superinterfaces:
OsidReceiver

public interface ActivityReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedActivities(Id notificationId, IdList activityIds)
    The callback for notification of updated activities.
    void
    deletedActivities(Id notificationId, IdList activityIds)
    The callback for notification of deleted activities.
    void
    newActivities(Id notificationId, IdList activityIds)
    The callback for notifications of new activities.

    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

    • newActivities

      void newActivities(Id notificationId, IdList activityIds)
      The callback for notifications of new activities.
      Parameters:
      notificationId - the notification Id
      activityIds - the Id of the new Activities
      Compliance:
      mandatory - This method must be implemented.
    • changedActivities

      void changedActivities(Id notificationId, IdList activityIds)
      The callback for notification of updated activities.
      Parameters:
      notificationId - the notification Id
      activityIds - the Id of the updated Activities
      Compliance:
      mandatory - This method must be implemented.
    • deletedActivities

      void deletedActivities(Id notificationId, IdList activityIds)
      The callback for notification of deleted activities.
      Parameters:
      notificationId - the notification Id
      activityIds - the Id of the deleted Activities
      Compliance:
      mandatory - This method must be implemented.