public interface QueueProcessorReceiver extends OsidReceiver
The queue processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted queue processors.
| Modifier and Type | Method and Description |
|---|---|
void |
changedQueueProcessors(IdList queueProcessorIds)
The callback for notification of updated queue processors.
|
void |
deletedQueueProcessors(IdList queueProcessorIds)
The callback for notification of deleted queue processors.
|
void |
newQueueProcessors(IdList queueProcessorIds)
The callback for notifications of new queue processors.
|
down, upvoid newQueueProcessors(IdList queueProcessorIds)
queueProcessorIds - the Ids of the new
QueueProcessors mandatory - This method must be implemented. void changedQueueProcessors(IdList queueProcessorIds)
queueProcessorIds - the Ids of the updated
QueueProcessors mandatory - This method must be implemented. void deletedQueueProcessors(IdList queueProcessorIds)
queueProcessorIds - the Ids of the deleted
QueueProcessors mandatory - This method must be implemented.