class FileDownloadCallback
interface FileDownloadCallback
|
Description:
This callback will notify the process of downloading selected files.
Class Members:
Callback Method
method onStart
Description:
Called as a file is about to start downloading.
method onEnd
Description:
Called when a file has completed downloading.
method onError
void onError(Exception exception)
|
Description:
Called when there is an error during download.
Exception exception | The error exception. |
method onProgressUpdate
void onProgressUpdate(int progress)
|
Description:
Called to update the progress on downloading a file in percent. Range is [0, 100].
int progress | The progress of downloading. |