Interface ConferralReceiver

All Superinterfaces:
OsidReceiver

public interface ConferralReceiver extends OsidReceiver

The conferral receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted conferrals.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedConferrals(Id notificationId, IdList conferralIds)
    The callback for notifications of updated conferrals.
    void
    deletedConferrals(Id notificationId, IdList conferralIds)
    the callback for notification of deleted conferrals.
    void
    newConferrals(Id notificationId, IdList conferralIds)
    The callback for notifications of new conferrals.

    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

    • newConferrals

      void newConferrals(Id notificationId, IdList conferralIds)
      The callback for notifications of new conferrals.
      Parameters:
      notificationId - the notification Id
      conferralIds - the Ids of the new conferrals
      Compliance:
      mandatory - This method must be implemented.
    • changedConferrals

      void changedConferrals(Id notificationId, IdList conferralIds)
      The callback for notifications of updated conferrals.
      Parameters:
      notificationId - the notification Id
      conferralIds - the Ids of the updated conferrals
      Compliance:
      mandatory - This method must be implemented.
    • deletedConferrals

      void deletedConferrals(Id notificationId, IdList conferralIds)
      the callback for notification of deleted conferrals.
      Parameters:
      notificationId - the notification Id
      conferralIds - the Ids of the deleted conferrals
      Compliance:
      mandatory - This method must be implemented.