Interface ObstacleEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface ObstacleEnablerReceiver extends OsidReceiver

The obstacle enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted obstacle enablers.

Like all OsidReceivers, notifications are delivered to ObstacleEnablerReceiver serially and a receiver method is not invoked again until any previous invocation has returned.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedObstacleEnablers(Id notificationId, IdList obstacleEnablerIds)
    The callback for notification of updated obstacle enablers.
    void
    deletedObstacleEnablers(Id notificationId, IdList obstacleEnablerIds)
    The callback for notification of deleted obstacle enablers.
    void
    newObstacleEnablers(Id notificationId, IdList obstacleEnablerIds)
    The callback for notifications of new obstacle enablers.

    Methods inherited from interface OsidReceiver

    down, up
  • Method Details

    • newObstacleEnablers

      void newObstacleEnablers(Id notificationId, IdList obstacleEnablerIds)
      The callback for notifications of new obstacle enablers.
      Parameters:
      notificationId - the notification Id
      obstacleEnablerIds - the Ids of the new ObstacleEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedObstacleEnablers

      void changedObstacleEnablers(Id notificationId, IdList obstacleEnablerIds)
      The callback for notification of updated obstacle enablers.
      Parameters:
      notificationId - the notification Id
      obstacleEnablerIds - the Ids of the updated ObstacleEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedObstacleEnablers

      void deletedObstacleEnablers(Id notificationId, IdList obstacleEnablerIds)
      The callback for notification of deleted obstacle enablers.
      Parameters:
      notificationId - the notification Id
      obstacleEnablerIds - the Ids of the deleted ObstacleEnablers
      Compliance:
      mandatory - This method must be implemented.