A callback that is used to handle the stream download
| abstract void |
doInBackground(StreamDownloadTask.TaskSnapshot state, InputStream stream)
doInBackground gets called on a background thread and should process the input stream to load
data as desired.
|
doInBackground gets called on a background thread and should process the input stream to load
data as desired. The stream should be closed prior to returning or in the handler onSuccess(Object)
| state | is the current StreamDownloadTask.TaskSnapshot for this task |
|---|---|
| stream | the InputStream for the downloaded bytes. |
| IOException | may be thrown to cancel the operation. |
|---|