public interface PostEntryReceiver extends OsidReceiver
The post entry receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
PostEntry objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPostEntries(IdList postEntryIds)
The callback for notification of updated post entries.
|
void |
deletedPostEntries(IdList postEntryIds)
the callback for notification of deleted post entries.
|
void |
newPostEntries(IdList postEntryIds)
The callback for notifications of new post entries.
|
down, upvoid newPostEntries(IdList postEntryIds)
postEntryIds - the Ids of the new
PostEntries mandatory - This method must be implemented. void changedPostEntries(IdList postEntryIds)
postEntryIds - the Ids of the updated
PostEntries mandatory - This method must be implemented. void deletedPostEntries(IdList postEntryIds)
postEntryIds - the Ids of the deleted
PostEntries mandatory - This method must be implemented.