getVideoDownloadStatus

open fun getVideoDownloadStatus(video: Video): DownloadStatus

Gets the status of previous video download request. Please note that this is a blocking call. Checking the status of large video with multiple assets may take time. Operations to retrieve the video download status will block the UI thread. For asynchronous version use getVideoDownloadStatus.

Return

the video download status.

Parameters

video

the video being downloaded.

See also


open fun getVideoDownloadStatus(video: Video, callback: OfflineCallback<DownloadStatus>)

Asynchronously gets the status of previous video download request. Please note that this is a blocking call. Checking the status of large video with multiple assets may take time.

Parameters

video

The video which DownloadStatus will be retrieved.

callback

Provides the result of the operation. In case the DownloadStatus has been retrieved successfully, will be called to provide the { } from the requested video. { } will be called in case there was an error.


Gets the status of previous video download request. Please note that this is a blocking call. Checking the status of large video with multiple assets may take time. Operations to retrieve the video download status will block the UI thread. For asynchronous version use getVideoDownloadStatus.

Return

the video download status.

Parameters

videoId

The id of the video which DownloadStatus will be retrieved.

See also


Asynchronously gets the status of previous video download request. Please note that this is a blocking call. Checking the status of large video with multiple assets may take time.

Parameters

videoId

The id of the video which DownloadStatus will be retrieved.

callback

Provides the result of the operation. In case the DownloadStatus has been retrieved successfully, will be called to provide the { } from the requested video. { } will be called in case there was an error.