Package com.gpudb.filesystem.download
Interface FileDownloadListener
public interface FileDownloadListener
This interface provides callback method for - a. a complete single shot download of multiple files b. a part/segment download of a multi-part download c. one or more complete single part download
Method Summary
Modifier and TypeMethodDescriptionvoidonFullFileDownload(List<String> fileNames) This method is called when a single shot full file download has been completed.voidonMultiPartDownloadComplete(List<Result> results) This method is called when all segments/parts of a multi-part download have been completed.voidonPartDownload(Result result) This method is called whenever any part of a multi-part download has been completed.
Method Details