Interface QueueProcessorEnablerReceiver
- All Superinterfaces:
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 TypeMethodDescriptionvoidchangedQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds) The callback for notification of updated queue processor enablers.voiddeletedQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds) The callback for notification of deleted queue processor enablers.voidnewQueueProcessorEnablers(Id notificationId, IdList queueProcessorEnablerIds) The callback for notifications of new queue processor enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newQueueProcessorEnablers
The callback for notifications of new queue processor enablers.- Parameters:
notificationId- the notification IdqueueProcessorEnablerIds- theIdsof the newQueueProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-
changedQueueProcessorEnablers
The callback for notification of updated queue processor enablers.- Parameters:
notificationId- the notification IdqueueProcessorEnablerIds- theIdsof the updatedQueueProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedQueueProcessorEnablers
The callback for notification of deleted queue processor enablers.- Parameters:
notificationId- the notification IdqueueProcessorEnablerIds- theIdsof the deletedQueueProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-