Package com.brightcove.player.network
Class DownloadManager
java.lang.Object
com.brightcove.player.network.DownloadManager
- All Implemented Interfaces:
IDownloadManager
Provides an implementation of
IDownloadManager that uses an application database to
track the requests. The requests placed in the database will be downloaded asynchronously in a
separate process. Any request sets that have been marked for deletion will be cancelled.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceA listener that can be used to callback notifications about download requests.static classProvides mutable implementation ofIDownloadManager.IRequest, which can be used to submit download requests to theIDownloadManager.Nested classes/interfaces inherited from interface com.brightcove.player.network.IDownloadManager
IDownloadManager.IRequest -
Field Summary
FieldsModifier and TypeFieldDescriptionfinal com.liulishuo.filedownloader.FileDownloadLargeFileListenerA listener will be used watch download status changes and update the overall download status. -
Method Summary
Modifier and TypeMethodDescriptionbooleanaddListener(Long key, DownloadManager.Listener listener) io.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.booleandeleteDownload(com.brightcove.player.store.DownloadRequestSet requestSet) Cancels all the download requests in the specified set and removes the download request set.booleandeleteDownload(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.List<android.app.NotificationChannel>Get all of the notification channels assigned to this DownloadManager instancegetDownloadStatus(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.static DownloadManagergetInstance(android.content.Context context) Gets reference to the single instance of the default download manager.android.app.NotificationChannelgetNotificationChannelById(String notificationChannelId) Retrieve the NotificationChannel specified by ID (or null if the NotificationChannel does not exist)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.booleanremoveListener(DownloadManager.Listener listener) voidremoveNotificationChannelById(String notificationChannelId) Remove the NotificationChannel with the spedified ID from the NotificationManagerresumeDownload(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.voidsetNotificationChannel(android.app.NotificationChannel notificationChannel) Set the specified NotificationChannel This is typically done when use of a customized NotificationChannel (for example, to manage Notification sound settings) is desired.
-
Field Details
-
downloadListener
public final com.liulishuo.filedownloader.FileDownloadLargeFileListener downloadListenerA listener will be used watch download status changes and update the overall download status.
-
-
Method Details
-
getInstance
Gets reference to the single instance of the default download manager.- Parameters:
context- the context of the host application.- Returns:
- the single instance of the default download manager.
-
addListener
-
removeListener
-
createDownloadRequestSet
@NonNull public io.reactivex.Observable<com.brightcove.player.store.DownloadRequestSet> createDownloadRequestSet(@Nullable RequestConfig requestConfig, long estimatedSize, @NonNull DownloadManager.Listener listener) Description copied from interface:IDownloadManagerCreates an empty download request set with the specified estimated size.Please note the operation will be carried on a background i/o thread.
- Specified by:
createDownloadRequestSetin interfaceIDownloadManager- 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
Observablethat must subscribed to complete operation and obtain the result.
-
enqueueDownload
@NonNull public io.reactivex.Observable<com.brightcove.player.store.DownloadRequestSet> enqueueDownload(@NonNull com.brightcove.player.store.DownloadRequestSet requestSet, @NonNull IDownloadManager.IRequest... requests) Description copied from interface:IDownloadManagerEnqueues a set of download requests to the specified request set. The status of the download request set will be more toDownloadStatus.STATUS_PENDINGimmediately adding the requests to the database. TheDownloadManagerwill 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.
- Specified by:
enqueueDownloadin interfaceIDownloadManager- Parameters:
requestSet- reference to therequests- the download requests to be enqueued.- Returns:
- reference to an
Observablethat must subscribed to complete operation and obtain the result.
-
pauseDownload
@NonNull public DownloadStatus pauseDownload(@Nullable com.brightcove.player.store.DownloadRequestSet requestSet) Description copied from interface:IDownloadManagerPauses download of the specified request set, if it is not already paused.- Specified by:
pauseDownloadin interfaceIDownloadManager- Parameters:
requestSet- reference to the download request to be paused.- Returns:
- the new status of download request set.
-
pauseDownload
Description copied from interface:IDownloadManagerPauses download of the specified request set, if it is not already paused.- Specified by:
pauseDownloadin interfaceIDownloadManager- Parameters:
requestSetKey- the unique identifier to the download request.- Returns:
- the new status of download request set.
-
resumeDownload
@NonNull public DownloadStatus resumeDownload(@Nullable com.brightcove.player.store.DownloadRequestSet requestSet) Description copied from interface:IDownloadManagerResumes download of the specified request set, if it is currently paused.- Specified by:
resumeDownloadin interfaceIDownloadManager- Parameters:
requestSet- reference to the download request to be resumed.- Returns:
- the new status of download request set.
-
resumeDownload
Description copied from interface:IDownloadManagerResumes download of the specified request set, if it is currently paused.- Specified by:
resumeDownloadin interfaceIDownloadManager- Parameters:
requestSetKey- the unique identifier to the download request.- Returns:
- the new status of download request set.
-
deleteDownload
Description copied from interface:IDownloadManagerCancels all the download requests in the specified set and removes the download request set.- Specified by:
deleteDownloadin interfaceIDownloadManager- Parameters:
requestSetKey- the unique identifier to the download request.- Returns:
- true if the request set was found and removed, otherwise false.
-
deleteDownload
public boolean deleteDownload(@Nullable com.brightcove.player.store.DownloadRequestSet requestSet) Description copied from interface:IDownloadManagerCancels all the download requests in the specified set and removes the download request set.- Specified by:
deleteDownloadin interfaceIDownloadManager- Parameters:
requestSet- the request set to be cancelled.- Returns:
- true if the request set was found and removed, otherwise false.
-
getDownloadStatus
Description copied from interface:IDownloadManagerQueries the overall download status of the specified download request set.- Specified by:
getDownloadStatusin interfaceIDownloadManager- Parameters:
requestSetKey- the unique identifier to the download request.- Returns:
- the overall download status
-
getDownloadStatus
@NonNull public DownloadStatus getDownloadStatus(@Nullable com.brightcove.player.store.DownloadRequestSet requestSet) Description copied from interface:IDownloadManagerQueries the overall download status of the specified download request set.- Specified by:
getDownloadStatusin interfaceIDownloadManager- Parameters:
requestSet- reference to the download request set.- Returns:
- the overall download status
-
setNotificationChannel
public void setNotificationChannel(@NonNull android.app.NotificationChannel notificationChannel) Set the specified NotificationChannel This is typically done when use of a customized NotificationChannel (for example, to manage Notification sound settings) is desired. Note that setting a custom NotificationChannel will remove this DownloadManager's default NotificationChannel- Parameters:
notificationChannel- The user-created NotificationChannel object
-
getNotificationChannelById
@Nullable public android.app.NotificationChannel getNotificationChannelById(@NonNull String notificationChannelId) Retrieve the NotificationChannel specified by ID (or null if the NotificationChannel does not exist)- Parameters:
notificationChannelId- The NotificationChannel ID- Returns:
- The NotificationChannel with that ID, or null if the channel is not found
-
removeNotificationChannelById
Remove the NotificationChannel with the spedified ID from the NotificationManager- Parameters:
notificationChannelId- The ID of the NotificationChannel to remove
-
getAllNotificationChannels
Get all of the notification channels assigned to this DownloadManager instance- Returns:
- The List of this DownloadManager's NotificationChannels
-