findAllVideoDownload

open fun findAllVideoDownload(status: Int): List<Video>

Finds all offline video downloads with specified status. Operations to retrieve all videos will block the UI thread. For asynchronous version use findAllVideoDownload.

Return

the list of completed video downloads.

Parameters

status

the status of the video download.

See also


open fun findAllVideoDownload(status: Int, callback: OfflineCallback<List<Video>>)

Asynchronously finds all offline video downloads with specified status.

Parameters

status

the status of the video download.