public interface WorkReceiver extends OsidReceiver
The work receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Work
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedWorks(IdList workIds)
The callback for notification of updated works.
|
void |
deletedWorks(IdList workIds)
The callback for notification of deleted works.
|
void |
newWorks(IdList workIds)
The callback for notifications of new works.
|
down, upvoid newWorks(IdList workIds)
workIds - the Ids of the new Works mandatory - This method must be implemented. void changedWorks(IdList workIds)
workIds - the Ids of the updated Works
mandatory - This method must be implemented. void deletedWorks(IdList workIds)
workIds - the Ids of the deleted Works
mandatory - This method must be implemented.