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 |
changedReply(Id replyId)
The callback for notifications of updated replies.
|
void |
deletedReply(Id replyId)
the callback for notification of deleted replies.
|
void |
newReply(Id replyId)
The callback for notifications of new replies.
|
down, up
void newReply(Id replyId)
replyId
- the Id
of the new replymandatory
- This method must be implemented. void changedReply(Id replyId)
replyId
- the Id
of the updated replymandatory
- This method must be implemented. void deletedReply(Id replyId)
replyId
- the Id
of the deleted replymandatory
- This method must be implemented.