public interface QueueReceiver extends OsidReceiver
The queue receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Queue
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedQueues(IdList queueIds)
The callback for notification of updated queues.
|
void |
deletedQueues(IdList queueIds)
The callback for notification of deleted queues.
|
void |
newQueues(IdList queueIds)
The callback for notifications of new queues.
|
down, up
void newQueues(IdList queueIds)
queueIds
- the Ids
of the new Queues
mandatory
- This method must be implemented. void changedQueues(IdList queueIds)
queueIds
- the Ids
of the updated Queues
mandatory
- This method must be implemented. void deletedQueues(IdList queueIds)
queueIds
- the Ids
of the deleted Queues
mandatory
- This method must be implemented.