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(IdList postIds)
The callback for notification of updated posts.
|
void |
deletedPosts(IdList postIds)
The callback for notification of deleted posts.
|
void |
newPosts(IdList postIds)
The callback for notifications of new posts.
|
down, upvoid newPosts(IdList postIds)
postIds - the Ids of the new Posts mandatory - This method must be implemented. void changedPosts(IdList postIds)
postIds - the Ids of the updated Posts
mandatory - This method must be implemented. void deletedPosts(IdList postIds)
postIds - the Ids of the deleted Posts
mandatory - This method must be implemented.