public interface CommentReceiver extends OsidReceiver
The comment receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted comments.
| Modifier and Type | Method and Description |
|---|---|
void |
changedComments(Id notificationId,
IdList commentIds)
The callback for notifications of updated comments.
|
void |
deletedComments(Id notificationId,
IdList commentIds)
the callback for notification of deleted comments.
|
void |
newComments(Id notificationId,
IdList commentIds)
The callback for notifications of new comments.
|
down, upvoid newComments(Id notificationId, IdList commentIds)
notificationId - the notification Id commentIds - the Ids of the new commentsmandatory - This method must be implemented. void changedComments(Id notificationId, IdList commentIds)
notificationId - the notification Id commentIds - the Ids of the updated commentsmandatory - This method must be implemented.