public interface BrokerProcessorReceiver extends OsidReceiver
The broker processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted broker processors.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBrokerProcessors(IdList brokerProcessorIds)
The callback for notification of updated broker processors.
|
void |
deletedBrokerProcessors(IdList brokerProcessorIds)
The callback for notification of deleted broker processors.
|
void |
newBrokerProcessors(IdList brokerProcessorIds)
The callback for notifications of new broker processors.
|
down, upvoid newBrokerProcessors(IdList brokerProcessorIds)
brokerProcessorIds - the Ids of the new
BrokerProcessors mandatory - This method must be implemented. void changedBrokerProcessors(IdList brokerProcessorIds)
brokerProcessorIds - the Ids of the updated
BrokerProcessors mandatory - This method must be implemented. void deletedBrokerProcessors(IdList brokerProcessorIds)
brokerProcessorIds - the Ids of the deleted
BrokerProcessors mandatory - This method must be implemented.