Interface DispatchConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface DispatchConstrainerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedDispatchConstrainerEnablers(Id notificationId, IdList dispatchConstrainerEnablerIds)
    The callback for notification of updated dispatch constrainer enablers.
    void
    deletedDispatchConstrainerEnablers(Id notificationId, IdList dispatchConstrainerEnablerIds)
    The callback for notification of deleted dispatch constrainer enablers.
    void
    newDispatchConstrainerEnablers(Id notificationId, IdList dispatchConstrainerEnablerIds)
    The callback for notifications of new dispatch 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

    • newDispatchConstrainerEnablers

      void newDispatchConstrainerEnablers(Id notificationId, IdList dispatchConstrainerEnablerIds)
      The callback for notifications of new dispatch constrainer enablers.
      Parameters:
      notificationId - the notification Id
      dispatchConstrainerEnablerIds - the Id of the new DispatchConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedDispatchConstrainerEnablers

      void changedDispatchConstrainerEnablers(Id notificationId, IdList dispatchConstrainerEnablerIds)
      The callback for notification of updated dispatch constrainer enablers.
      Parameters:
      notificationId - the notification Id
      dispatchConstrainerEnablerIds - the Id of the updated DispatchConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedDispatchConstrainerEnablers

      void deletedDispatchConstrainerEnablers(Id notificationId, IdList dispatchConstrainerEnablerIds)
      The callback for notification of deleted dispatch constrainer enablers.
      Parameters:
      notificationId - the notification Id
      dispatchConstrainerEnablerIds - the Id of the deleted DispatchConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.