Interface StepConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface StepConstrainerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedStepConstrainerEnablers(Id notificationId, IdList stepConstrainerEnablerIds)
    The callback for notification of updated step constrainer enablers.
    void
    deletedStepConstrainerEnablers(Id notificationId, IdList stepConstrainerEnablerIds)
    The callback for notification of deleted step constrainer enablers.
    void
    newStepConstrainerEnablers(Id notificationId, IdList stepConstrainerEnablerIds)
    The callback for notifications of new step constrainer enablers.

    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

    • newStepConstrainerEnablers

      void newStepConstrainerEnablers(Id notificationId, IdList stepConstrainerEnablerIds)
      The callback for notifications of new step constrainer enablers.
      Parameters:
      notificationId - the notification Id
      stepConstrainerEnablerIds - the Ids of the new StepConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedStepConstrainerEnablers

      void changedStepConstrainerEnablers(Id notificationId, IdList stepConstrainerEnablerIds)
      The callback for notification of updated step constrainer enablers.
      Parameters:
      notificationId - the notification Id
      stepConstrainerEnablerIds - the Ids of the updated StepConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedStepConstrainerEnablers

      void deletedStepConstrainerEnablers(Id notificationId, IdList stepConstrainerEnablerIds)
      The callback for notification of deleted step constrainer enablers.
      Parameters:
      notificationId - the notification Id
      stepConstrainerEnablerIds - the Ids of the deleted StepConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.