Interface QueueConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface QueueConstrainerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedQueueConstrainerEnablers(Id notificationId, IdList queueConstrainerEnablerIds)
    The callback for notification of updated queue constrainer enablers.
    void
    deletedQueueConstrainerEnablers(Id notificationId, IdList queueConstrainerEnablerIds)
    The callback for notification of deleted queue constrainer enablers.
    void
    newQueueConstrainerEnablers(Id notificationId, IdList queueConstrainerEnablerIds)
    The callback for notifications of new queue 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

    • newQueueConstrainerEnablers

      void newQueueConstrainerEnablers(Id notificationId, IdList queueConstrainerEnablerIds)
      The callback for notifications of new queue constrainer enablers.
      Parameters:
      notificationId - the notification Id
      queueConstrainerEnablerIds - the Ids of the new QueueConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedQueueConstrainerEnablers

      void changedQueueConstrainerEnablers(Id notificationId, IdList queueConstrainerEnablerIds)
      The callback for notification of updated queue constrainer enablers.
      Parameters:
      notificationId - the notification Id
      queueConstrainerEnablerIds - the Ids of the updated QueueConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedQueueConstrainerEnablers

      void deletedQueueConstrainerEnablers(Id notificationId, IdList queueConstrainerEnablerIds)
      The callback for notification of deleted queue constrainer enablers.
      Parameters:
      notificationId - the notification Id
      queueConstrainerEnablerIds - the Ids of the deleted QueueConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.