Interface DispatchConstrainerReceiver

All Superinterfaces:
OsidReceiver

public interface DispatchConstrainerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedDispatchConstrainers(Id notificationId, IdList dispatchConstrainerIds)
    The callback for notification of updated dispatch constrainers.
    void
    deletedDispatchConstrainers(Id notificationId, IdList dispatchConstrainerIds)
    The callback for notification of deleted dispatch constrainers.
    void
    newDispatchConstrainers(Id notificationId, IdList dispatchConstrainerIds)
    The callback for notifications of new dispatch constrainers.

    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

    • newDispatchConstrainers

      void newDispatchConstrainers(Id notificationId, IdList dispatchConstrainerIds)
      The callback for notifications of new dispatch constrainers.
      Parameters:
      notificationId - the notification Id
      dispatchConstrainerIds - the Id of the new DispatchConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • changedDispatchConstrainers

      void changedDispatchConstrainers(Id notificationId, IdList dispatchConstrainerIds)
      The callback for notification of updated dispatch constrainers.
      Parameters:
      notificationId - the notification Id
      dispatchConstrainerIds - the Id of the updated DispatchConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • deletedDispatchConstrainers

      void deletedDispatchConstrainers(Id notificationId, IdList dispatchConstrainerIds)
      The callback for notification of deleted dispatch constrainers.
      Parameters:
      notificationId - the notification Id
      dispatchConstrainerIds - the Id of the deleted DispatchConstrainers
      Compliance:
      mandatory - This method must be implemented.