Interface DispatchProcessorReceiver

All Superinterfaces:
OsidReceiver

public interface DispatchProcessorReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedDispatchProcessors(Id notificationId, IdList dispatchProcessorIds)
    The callback for notification of updated dispatch processors.
    void
    deletedDispatchProcessors(Id notificationId, IdList dispatchProcessorIds)
    The callback for notification of deleted dispatch processors.
    void
    newDispatchProcessors(Id notificationId, IdList dispatchProcessorIds)
    The callback for notifications of new dispatch processors.

    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

    • newDispatchProcessors

      void newDispatchProcessors(Id notificationId, IdList dispatchProcessorIds)
      The callback for notifications of new dispatch processors.
      Parameters:
      notificationId - the notification Id
      dispatchProcessorIds - the Id of the new DispatchProcessors
      Compliance:
      mandatory - This method must be implemented.
    • changedDispatchProcessors

      void changedDispatchProcessors(Id notificationId, IdList dispatchProcessorIds)
      The callback for notification of updated dispatch processors.
      Parameters:
      notificationId - the notification Id
      dispatchProcessorIds - the Id of the updated DispatchProcessors
      Compliance:
      mandatory - This method must be implemented.
    • deletedDispatchProcessors

      void deletedDispatchProcessors(Id notificationId, IdList dispatchProcessorIds)
      The callback for notification of deleted dispatch processors.
      Parameters:
      notificationId - the notification Id
      dispatchProcessorIds - the Id of the deleted DispatchProcessors
      Compliance:
      mandatory - This method must be implemented.