public interface MessageReceiver extends OsidReceiver
The message receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Message
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedMessages(IdList messageIds)
The callback for notification of updated messages.
|
void |
deletedMessages(IdList messageIds)
the callback for notification of deleted messages.
|
void |
newMessages(IdList messageIds)
The callback for notifications of new messages.
|
down, upvoid newMessages(IdList messageIds)
messageIds - the Ids of the new Messages
mandatory - This method must be implemented. void changedMessages(IdList messageIds)
messageIds - the Ids of the updated
Messages mandatory - This method must be implemented. void deletedMessages(IdList messageIds)
messageIds - the Ids of the deleted
Messages mandatory - This method must be implemented.