findAllQueuedVideoDownload

open fun findAllQueuedVideoDownload(): List<Video>

This method returns the list of videos that have been queued for download. The result will include all videos that have been placed in the download queue, including those that have been downloaded successfully. Please call getVideoDownloadStatus to find the current download status of each video. Operations to retrieve the queued videos will block the UI thread. For asynchronous version use findAllQueuedVideoDownload.

Return

the list of enqueued videos for download.

See also


open fun findAllQueuedVideoDownload(callback: OfflineCallback<List<Video>>)

Asynchronously returns the list of videos that have been queued for download. The result will include all videos that have been placed in the download queue, including those that have been downloaded successfully. Please call getVideoDownloadStatus to find the current download status of each video.

Parameters