public interface ResultReceiver extends OsidReceiver
The result receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted results.
| Modifier and Type | Method and Description |
|---|---|
void |
changedResults(IdList resultIds)
The callback for notifications of updated results.
|
void |
deletedResults(IdList resultIds)
the callback for notification of deleted results.
|
void |
newResults(IdList resultIds)
The callback for notifications of new results.
|
down, upvoid newResults(IdList resultIds)
resultIds - the Ids of the new resultsmandatory - This method must be implemented. void changedResults(IdList resultIds)
resultIds - the Ids of the updated resultsmandatory - This method must be implemented. void deletedResults(IdList resultIds)
resultIds - the Ids of the deleted resultsmandatory - This method must be implemented.