Interface DispatchProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface DispatchProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedDispatchProcessorEnablers(Id notificationId, IdList dispatchProcessorEnablerIds)
    The callback for notification of updated dispatch processor enablers.
    void
    deletedDispatchProcessorEnablers(Id notificationId, IdList dispatchProcessorEnablerIds)
    The callback for notification of deleted dispatch processor enablers.
    void
    newDispatchProcessorEnablers(Id notificationId, IdList dispatchProcessorEnablerIds)
    The callback for notifications of new dispatch processor 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

    • newDispatchProcessorEnablers

      void newDispatchProcessorEnablers(Id notificationId, IdList dispatchProcessorEnablerIds)
      The callback for notifications of new dispatch processor enablers.
      Parameters:
      notificationId - the notification Id
      dispatchProcessorEnablerIds - the Id of the new DispatchProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedDispatchProcessorEnablers

      void changedDispatchProcessorEnablers(Id notificationId, IdList dispatchProcessorEnablerIds)
      The callback for notification of updated dispatch processor enablers.
      Parameters:
      notificationId - the notification Id
      dispatchProcessorEnablerIds - the Id of the updated DispatchProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedDispatchProcessorEnablers

      void deletedDispatchProcessorEnablers(Id notificationId, IdList dispatchProcessorEnablerIds)
      The callback for notification of deleted dispatch processor enablers.
      Parameters:
      notificationId - the notification Id
      dispatchProcessorEnablerIds - the Id of the deleted DispatchProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.