public class StreamLocalUriFetcher extends LocalUriFetcher<InputStream>
InputStream
for a local Uri
.DataFetcher.DataCallback<T>
Constructor and Description |
---|
StreamLocalUriFetcher(ContentResolver resolver,
Uri uri) |
Modifier and Type | Method and Description |
---|---|
protected void |
close(InputStream data)
Closes the concrete data type if necessary.
|
Class<InputStream> |
getDataClass()
Returns the class of the data this fetcher will attempt to obtain.
|
protected InputStream |
loadResource(Uri uri,
ContentResolver contentResolver)
Returns a concrete data type from the given
Uri using the given ContentResolver . |
cancel, cleanup, getDataSource, loadData
public StreamLocalUriFetcher(ContentResolver resolver, Uri uri)
protected InputStream loadResource(Uri uri, ContentResolver contentResolver) throws FileNotFoundException
LocalUriFetcher
Uri
using the given ContentResolver
.loadResource
in class LocalUriFetcher<InputStream>
FileNotFoundException
protected void close(InputStream data) throws IOException
LocalUriFetcher
Note - We can't rely on the closeable interface because it was added after our min API level. See issue #157.
close
in class LocalUriFetcher<InputStream>
data
- The data to close.IOException
public Class<InputStream> getDataClass()
DataFetcher