Interface FloorReceiver

All Superinterfaces:
OsidReceiver

public interface FloorReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedFloors(Id notificationId, IdList floorIds)
    The callback for notification of updated floors.
    void
    deletedFloors(Id notificationId, IdList floorIds)
    the callback for notification of deleted floors.
    void
    newFloors(Id notificationId, IdList floorIds)
    The callback for notifications of new floors.

    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

    • newFloors

      void newFloors(Id notificationId, IdList floorIds)
      The callback for notifications of new floors.
      Parameters:
      notificationId - the notification Id
      floorIds - the Ids of the new Floors
      Compliance:
      mandatory - This method must be implemented.
    • changedFloors

      void changedFloors(Id notificationId, IdList floorIds)
      The callback for notification of updated floors.
      Parameters:
      notificationId - the notification Id
      floorIds - the Ids of the updated Floors
      Compliance:
      mandatory - This method must be implemented.
    • deletedFloors

      void deletedFloors(Id notificationId, IdList floorIds)
      the callback for notification of deleted floors.
      Parameters:
      notificationId - the notification Id
      floorIds - the Ids of the registered Floors
      Compliance:
      mandatory - This method must be implemented.