public interface ResponseReceiver extends OsidReceiver
The response receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted responses.
| Modifier and Type | Method and Description |
|---|---|
void |
changedResponses(Id notificationId,
IdList responseIds)
The callback for notification of updated responses.
|
void |
deletedResponses(Id notificationId,
IdList responseIds)
The callback for notification of deleted responses.
|
void |
newResponses(Id notificationId,
IdList responseIds)
The callback for notifications of new responses.
|
down, upvoid newResponses(Id notificationId, IdList responseIds)
notificationId - the notification Id responseIds - the Ids of the new Responses
mandatory - This method must be implemented. void changedResponses(Id notificationId, IdList responseIds)
notificationId - the notification Id responseIds - the Ids of the updated
Responses mandatory - This method must be implemented.