public interface PostReceiver extends OsidReceiver
The post receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Post
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPosts(Id notificationId,
IdList postIds)
The callback for notification of updated posts.
|
void |
deletedPosts(Id notificationId,
IdList postIds)
the callback for notification of deleted posts.
|
void |
newPosts(Id notificationId,
IdList postIds)
The callback for notifications of new posts.
|
down, upvoid newPosts(Id notificationId, IdList postIds)
notificationId - the notification Id postIds - the Ids of the new Posts mandatory - This method must be implemented. void changedPosts(Id notificationId, IdList postIds)
notificationId - the notification Id postIds - the Ids of the updated Posts
mandatory - This method must be implemented.