Interface OfflineDownloadChangeListener
-
public interface OfflineDownloadChangeListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCancel(OfflineDownloadOptions offlineDownload)voidonCreate(OfflineDownloadOptions offlineDownload)voidonError(OfflineDownloadOptions offlineDownload, java.lang.String error, java.lang.String message)voidonProgress(OfflineDownloadOptions offlineDownload, int progress)voidonSuccess(OfflineDownloadOptions offlineDownload)
-
-
-
Method Detail
-
onCreate
void onCreate(OfflineDownloadOptions offlineDownload)
-
onSuccess
void onSuccess(OfflineDownloadOptions offlineDownload)
-
onCancel
void onCancel(OfflineDownloadOptions offlineDownload)
-
onError
void onError(OfflineDownloadOptions offlineDownload, java.lang.String error, java.lang.String message)
-
onProgress
void onProgress(OfflineDownloadOptions offlineDownload, int progress)
-
-