Interface QueueProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface QueueProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds)
    The callback for notification of updated queue processor enablers.
    void
    deletedQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds)
    The callback for notification of deleted queue processor enablers.
    void
    newQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds)
    The callback for notifications of new queue 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

    • newQueueProcessorEnablers

      void newQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds)
      The callback for notifications of new queue processor enablers.
      Parameters:
      notificationId - the notification Id
      queueProcessorEnablerIds - the Ids of the new QueueProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedQueueProcessorEnablers

      void changedQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds)
      The callback for notification of updated queue processor enablers.
      Parameters:
      notificationId - the notification Id
      queueProcessorEnablerIds - the Ids of the updated QueueProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedQueueProcessorEnablers

      void deletedQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds)
      The callback for notification of deleted queue processor enablers.
      Parameters:
      notificationId - the notification Id
      queueProcessorEnablerIds - the Ids of the deleted QueueProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.