Interface DownloadSource
-
- All Implemented Interfaces:
public interface DownloadSource
A remote PDF resource that can be downloaded by the DownloadJob. Implementation could be a file served from a content provider, or a file on the web.
-
-
Method Summary
Modifier and Type Method Description abstract InputStream
open()
Opens an InputStream for downloading the document. abstract long
getLength()
Returns the total length of the download. -
-
Method Detail
-
open
abstract InputStream open()
Opens an InputStream for downloading the document.
- Returns:
A fresh input stream for downloading the PDF document.
-
-
-
-