OSID Logo
OSID Specifications
filing package
Version 3.1.0
Interfaceosid.filing.FileReceiver
Implementsosid.OsidReceiver
Description

The file receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted files.

Like all OsidReceivers, notifications are delivered to FileReceiver serially and a receiver method is not invoked again until any previous invocation has returned.

MethodnewFiles
Description

The callback for notifications of new files.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListfileIds the Ids of the new files
Compliancemandatory This method must be implemented.
MethodchangedFiles
Description

The callback for notification of updated files.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListfileIds the Ids of the changed files
Compliancemandatory This method must be implemented.
MethoddeletedFiles
Description

the callback for notification of deleted files.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListfileIds the Ids of the removed files
Compliancemandatory This method must be implemented.