Package com.brightcove.player.network
Interface IDownloadManager
- All Known Implementing Classes:
DownloadManager
public interface IDownloadManager
Defines the contract of a download manager, which can used to queue and manage download requests.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Contract of a download request that can be submitted to the download manager. -
Method Summary
Modifier and TypeMethodDescriptionio.reactivex.Observable<com.brightcove.player.store.DownloadRequestSet>
createDownloadRequestSet
(RequestConfig requestConfig, long estimatedSize, DownloadManager.Listener listener) Creates an empty download request set with the specified estimated size.boolean
deleteDownload
(com.brightcove.player.store.DownloadRequestSet requestSet) Cancels all the download requests in the specified set and removes the download request set.boolean
deleteDownload
(Long requestSetKey) Cancels all the download requests in the specified set and removes the download request set.io.reactivex.Observable<com.brightcove.player.store.DownloadRequestSet>
enqueueDownload
(com.brightcove.player.store.DownloadRequestSet requestSet, IDownloadManager.IRequest... requests) Enqueues a set of download requests to the specified request set.getDownloadStatus
(com.brightcove.player.store.DownloadRequestSet requestSet) Queries the overall download status of the specified download request set.getDownloadStatus
(Long requestSetKey) Queries the overall download status of the specified download request set.pauseDownload
(com.brightcove.player.store.DownloadRequestSet requestSet) Pauses download of the specified request set, if it is not already paused.pauseDownload
(Long requestSetKey) Pauses download of the specified request set, if it is not already paused.resumeDownload
(com.brightcove.player.store.DownloadRequestSet requestSet) Resumes download of the specified request set, if it is currently paused.resumeDownload
(Long requestSetKey) Resumes download of the specified request set, if it is currently paused.
-
Method Details
-
createDownloadRequestSet
@NonNull io.reactivex.Observable<com.brightcove.player.store.DownloadRequestSet> createDownloadRequestSet(@Nullable RequestConfig requestConfig, long estimatedSize, @NonNull DownloadManager.Listener listener) Creates an empty download request set with the specified estimated size.Please note the operation will be carried on a background i/o thread.
- Parameters:
requestConfig
- the configuration to be used for handling the download requests.estimatedSize
- the estimated total size of the download.listener
- reference to the callback listener that must be notified about status changes related to this download request.- Returns:
- reference to an
Observable
that must subscribed to complete operation and obtain the result.
-
enqueueDownload
@NonNull io.reactivex.Observable<com.brightcove.player.store.DownloadRequestSet> enqueueDownload(@NonNull com.brightcove.player.store.DownloadRequestSet requestSet, @NonNull IDownloadManager.IRequest... requests) Enqueues a set of download requests to the specified request set. The status of the download request set will be more toDownloadStatus.STATUS_PENDING
immediately adding the requests to the database. TheDownloadManager
will start to process the download requests after this call, because of network availability and current download queue load.Please note the operation will be carried on a background i/o thread.
- Parameters:
requestSet
- reference to therequests
- the download requests to be enqueued.- Returns:
- reference to an
Observable
that must subscribed to complete operation and obtain the result.
-
pauseDownload
@NonNull DownloadStatus pauseDownload(@Nullable com.brightcove.player.store.DownloadRequestSet requestSet) Pauses download of the specified request set, if it is not already paused.- Parameters:
requestSet
- reference to the download request to be paused.- Returns:
- the new status of download request set.
-
pauseDownload
Pauses download of the specified request set, if it is not already paused.- Parameters:
requestSetKey
- the unique identifier to the download request.- Returns:
- the new status of download request set.
-
resumeDownload
@NonNull DownloadStatus resumeDownload(@Nullable com.brightcove.player.store.DownloadRequestSet requestSet) Resumes download of the specified request set, if it is currently paused.- Parameters:
requestSet
- reference to the download request to be resumed.- Returns:
- the new status of download request set.
-
resumeDownload
Resumes download of the specified request set, if it is currently paused.- Parameters:
requestSetKey
- the unique identifier to the download request.- Returns:
- the new status of download request set.
-
deleteDownload
boolean deleteDownload(@Nullable com.brightcove.player.store.DownloadRequestSet requestSet) Cancels all the download requests in the specified set and removes the download request set.- Parameters:
requestSet
- the request set to be cancelled.- Returns:
- true if the request set was found and removed, otherwise false.
-
deleteDownload
Cancels all the download requests in the specified set and removes the download request set.- Parameters:
requestSetKey
- the unique identifier to the download request.- Returns:
- true if the request set was found and removed, otherwise false.
-
getDownloadStatus
Queries the overall download status of the specified download request set.- Parameters:
requestSetKey
- the unique identifier to the download request.- Returns:
- the overall download status
-
getDownloadStatus
@NonNull DownloadStatus getDownloadStatus(@Nullable com.brightcove.player.store.DownloadRequestSet requestSet) Queries the overall download status of the specified download request set.- Parameters:
requestSet
- reference to the download request set.- Returns:
- the overall download status
-