Package com.brightcove.player.network
Class DownloadManager
- java.lang.Object
-
- com.brightcove.player.network.DownloadManager
-
- All Implemented Interfaces:
IDownloadManager
public class DownloadManager extends java.lang.Object implements IDownloadManager
Provides an implementation ofIDownloadManagerthat 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 Classes Modifier and Type Class Description static interfaceDownloadManager.ListenerA listener that can be used to callback notifications about download requests.static classDownloadManager.RequestProvides 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
Fields Modifier and Type Field Description com.liulishuo.filedownloader.FileDownloadLargeFileListenerdownloadListenerA listener will be used watch download status changes and update the overall download status.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaddListener(java.lang.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(java.lang.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.java.util.List<android.app.NotificationChannel>getAllNotificationChannels()Get all of the notification channels assigned to this DownloadManager instanceDownloadStatusgetDownloadStatus(com.brightcove.player.store.DownloadRequestSet requestSet)Queries the overall download status of the specified download request set.DownloadStatusgetDownloadStatus(java.lang.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(java.lang.String notificationChannelId)Retrieve the NotificationChannel specified by ID (or null if the NotificationChannel does not exist)DownloadStatuspauseDownload(com.brightcove.player.store.DownloadRequestSet requestSet)Pauses download of the specified request set, if it is not already paused.DownloadStatuspauseDownload(java.lang.Long requestSetKey)Pauses download of the specified request set, if it is not already paused.booleanremoveListener(DownloadManager.Listener listener)voidremoveNotificationChannelById(java.lang.String notificationChannelId)Remove the NotificationChannel with the spedified ID from the NotificationManagerDownloadStatusresumeDownload(com.brightcove.player.store.DownloadRequestSet requestSet)Resumes download of the specified request set, if it is currently paused.DownloadStatusresumeDownload(java.lang.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.
-
-
-
Method Detail
-
getInstance
@NonNull public static DownloadManager getInstance(@NonNull android.content.Context context)
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
public boolean addListener(@NonNull java.lang.Long key, @NonNull DownloadManager.Listener listener)
-
removeListener
public boolean removeListener(@NonNull DownloadManager.Listener listener)
-
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
@NonNull public DownloadStatus pauseDownload(@NonNull java.lang.Long requestSetKey)
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
@NonNull public DownloadStatus resumeDownload(@NonNull java.lang.Long requestSetKey)
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
public boolean deleteDownload(@NonNull java.lang.Long requestSetKey)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
@NonNull public DownloadStatus getDownloadStatus(@NonNull java.lang.Long requestSetKey)
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 java.lang.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
public void removeNotificationChannelById(@NonNull java.lang.String notificationChannelId)Remove the NotificationChannel with the spedified ID from the NotificationManager- Parameters:
notificationChannelId- The ID of the NotificationChannel to remove
-
getAllNotificationChannels
@Nullable public java.util.List<android.app.NotificationChannel> getAllNotificationChannels()
Get all of the notification channels assigned to this DownloadManager instance- Returns:
- The List of this DownloadManager's NotificationChannels
-
-