public interface ReplyReceiver extends OsidReceiver
The reply receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted replies.
| Modifier and Type | Method and Description |
|---|---|
void |
changedReplies(Id notificationId,
IdList replyIds)
The callback for notifications of updated replies.
|
void |
deletedReplies(Id notificationId,
IdList replyIds)
the callback for notification of deleted replies.
|
void |
newReplies(Id notificationId,
IdList replyIds)
The callback for notifications of new replies.
|
down, upvoid newReplies(Id notificationId, IdList replyIds)
notificationId - the notification Id replyIds - the Ids of the new repliesmandatory - This method must be implemented. void changedReplies(Id notificationId, IdList replyIds)
notificationId - the notification Id replyIds - the Ids of the updated repliesmandatory - This method must be implemented.