public interface BrokerReceiver extends OsidReceiver
The broker receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Broker
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBrokers(IdList brokerIds)
The callback for notification of updated broker.
|
void |
deletedBrokers(IdList brokerIds)
The callback for notification of deleted brokers.
|
void |
newBrokers(IdList brokerIds)
The callback for notifications of new brokers.
|
down, upvoid newBrokers(IdList brokerIds)
brokerIds - the Ids of the new Brokers
mandatory - This method must be implemented. void changedBrokers(IdList brokerIds)
brokerIds - the Ids of the updated Brokers
mandatory - This method must be implemented. void deletedBrokers(IdList brokerIds)
brokerIds - the Ids of the deleted Brokers
mandatory - This method must be implemented.