public interface FileReceiver extends OsidReceiver
The file receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted files.
| Modifier and Type | Method and Description |
|---|---|
void |
changedFiles(Id notificationId,
IdList fileIds)
The callback for notification of updated files.
|
void |
deletedFiles(Id notificationId,
IdList fileIds)
the callback for notification of deleted files.
|
void |
newFiles(Id notificationId,
IdList fileIds)
The callback for notifications of new files.
|
down, upvoid newFiles(Id notificationId, IdList fileIds)
notificationId - the notification Id fileIds - the Ids of the new filesmandatory - This method must be implemented. void changedFiles(Id notificationId, IdList fileIds)
notificationId - the notification Id fileIds - the Ids of the changed filesmandatory - This method must be implemented.