public interface DemographicReceiver extends OsidReceiver
The demographic receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted demographics.
| Modifier and Type | Method and Description |
|---|---|
void |
changedDemographics(IdList demographicIds)
The callback for notification of updated demographics.
|
void |
deletedDemographics(IdList demographicIds)
The callback for notification of deleted demographics.
|
void |
newDemographics(IdList demographicIds)
The callback for notifications of new demographics.
|
down, upvoid newDemographics(IdList demographicIds)
demographicIds - the Ids of the new
Demographics mandatory - This method must be implemented. void changedDemographics(IdList demographicIds)
demographicIds - the Ids of the updated
Demographics mandatory - This method must be implemented. void deletedDemographics(IdList demographicIds)
demographicIds - the Ids of the deleted
Demographics mandatory - This method must be implemented.