Interface CheckReceiver

All Superinterfaces:
OsidReceiver

public interface CheckReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedChecks(Id notificationId, IdList checkIds)
    The callback for notification of updated checks.
    void
    deletedChecks(Id notificationId, IdList checkIds)
    The callback for notification of deleted checks.
    void
    newChecks(Id notificationId, IdList checkIds)
    The callback for notifications of new checks.

    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

    • newChecks

      void newChecks(Id notificationId, IdList checkIds)
      The callback for notifications of new checks.
      Parameters:
      notificationId - the notification Id
      checkIds - the Ids of the new Checks
      Compliance:
      mandatory - This method must be implemented.
    • changedChecks

      void changedChecks(Id notificationId, IdList checkIds)
      The callback for notification of updated checks.
      Parameters:
      notificationId - the notification Id
      checkIds - the Ids of the updated Checks
      Compliance:
      mandatory - This method must be implemented.
    • deletedChecks

      void deletedChecks(Id notificationId, IdList checkIds)
      The callback for notification of deleted checks.
      Parameters:
      notificationId - the notification Id
      checkIds - the Ids of the deleted Checks
      Compliance:
      mandatory - This method must be implemented.