public interface ItemReceiver extends OsidReceiver
The item receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Item
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedItems(IdList itemIds)
The callback for notification of updated items.
|
void |
deletedItems(IdList itemIds)
the callback for notification of deleted items.
|
void |
newItems(IdList itemIds)
The callback for notifications of new items.
|
down, upvoid newItems(IdList itemIds)
itemIds - the Ids of the new Items mandatory - This method must be implemented. void changedItems(IdList itemIds)
itemIds - the Ids of the updated Items
mandatory - This method must be implemented. void deletedItems(IdList itemIds)
itemIds - the Ids of the deleted Items
mandatory - This method must be implemented.