Interface InstallationReceiver

All Superinterfaces:
OsidReceiver

public interface InstallationReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    deletedInstallations(Id notificationId, IdList installationIds)
    The callback for notification of deleted installations.
    void
    newInstallations(Id notificationId, IdList installationIds)
    The callback for notifications of new installations.

    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

    • newInstallations

      void newInstallations(Id notificationId, IdList installationIds)
      The callback for notifications of new installations.
      Parameters:
      notificationId - the notification Id
      installationIds - the Ids of the new Installations
      Compliance:
      mandatory - This method must be implemented.
    • deletedInstallations

      void deletedInstallations(Id notificationId, IdList installationIds)
      The callback for notification of deleted installations.
      Parameters:
      notificationId - the notification Id
      installationIds - the Ids of the deleted Installations
      Compliance:
      mandatory - This method must be implemented.