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 |
changedQueueProcessor(Id queueProcessorId)
The callback for notification of updated queue processors.
|
void |
deletedQueueProcessor(Id queueProcessorId)
The callback for notification of deleted queue processors.
|
void |
newQueueProcessor(Id queueProcessorId)
The callback for notifications of new queue processors.
|
down, up
void newQueueProcessor(Id queueProcessorId)
queueProcessorId
- the Id
of the new
QueueProcessor
mandatory
- This method must be implemented. void changedQueueProcessor(Id queueProcessorId)
queueProcessorId
- the Id
of the updated
QueueProcessor
mandatory
- This method must be implemented. void deletedQueueProcessor(Id queueProcessorId)
queueProcessorId
- the Id
of the deleted
QueueProcessor
mandatory
- This method must be implemented.