Interface CommitmentReceiver

All Superinterfaces:
OsidReceiver

public interface CommitmentReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedCommitments(Id notificationId, IdList commitmentIds)
    The callback for notification of updated commitments.
    void
    deletedCommitments(Id notificationId, IdList commitmentIds)
    The callback for notification of deleted commitments.
    void
    newCommitmentss(Id notificationId, IdList commitmentIds)
    The callback for notifications of new commitments.

    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

    • newCommitmentss

      void newCommitmentss(Id notificationId, IdList commitmentIds)
      The callback for notifications of new commitments.
      Parameters:
      notificationId - the notification Id
      commitmentIds - the Id of the new Commitments
      Compliance:
      mandatory - This method must be implemented.
    • changedCommitments

      void changedCommitments(Id notificationId, IdList commitmentIds)
      The callback for notification of updated commitments.
      Parameters:
      notificationId - the notification Id
      commitmentIds - the Id of the updated Commitments
      Compliance:
      mandatory - This method must be implemented.
    • deletedCommitments

      void deletedCommitments(Id notificationId, IdList commitmentIds)
      The callback for notification of deleted commitments.
      Parameters:
      notificationId - the notification Id
      commitmentIds - the Id of the deleted Commitments
      Compliance:
      mandatory - This method must be implemented.