public interface ForumReceiver extends OsidReceiver
The forum receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Forum
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfForums(Id notificationId,
IdList forumIds)
The callback for notifications of changes to children of forum
hierarchy nodes.
|
void |
changedForums(Id notificationId,
IdList forumIds)
The callback for notification of updated forums.
|
void |
deletedForums(Id notificationId,
IdList forumIds)
the callback for notification of deleted forums.
|
void |
newForums(Id notificationId,
IdList forumIds)
The callback for notifications of new forums.
|
down, upvoid newForums(Id notificationId, IdList forumIds)
notificationId - the notification Id forumIds - the Ids of the new Forums
mandatory - This method must be implemented. void changedForums(Id notificationId, IdList forumIds)
notificationId - the notification Id forumIds - the Ids of the updated Forums
mandatory - This method must be implemented. void deletedForums(Id notificationId, IdList forumIds)
notificationId - the notification Id forumIds - the Ids of the registered
Forums mandatory - This method must be implemented. void changedChildOfForums(Id notificationId, IdList forumIds)
notificationId - the notification Id forumIds - the Ids of the Forums
whose children have changedmandatory - This method must be implemented.