Class DownloadManager
- java.lang.Object
-
- com.google.android.exoplayer2.offline.DownloadManager
-
@Deprecated public final class DownloadManager extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Manages downloads.Normally a download manager should be accessed via a
DownloadService. When a download manager is used directly instead, downloads will be initially paused and so must be resumed by callingresumeDownloads().A download manager instance must be accessed only from the thread that created it, unless that thread does not have a
Looper. In that case, it must be accessed only from the application's main thread. Registered listeners will be called on the same thread. In all cases the `Looper` of the thread from which the manager must be accessed can be queried usinggetApplicationLooper().
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDownloadManager.ListenerDeprecated.Listener forDownloadManagerevents.
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_MAX_PARALLEL_DOWNLOADSDeprecated.The default maximum number of parallel downloads.static intDEFAULT_MIN_RETRY_COUNTDeprecated.The default minimum number of times a download must be retried before failing.static RequirementsDEFAULT_REQUIREMENTSDeprecated.The default requirement is that the device has network connectivity.
-
Constructor Summary
Constructors Constructor Description DownloadManager(Context context, DatabaseProvider databaseProvider, Cache cache, DataSource.Factory upstreamFactory, Executor executor)Deprecated.Constructs aDownloadManager.DownloadManager(Context context, WritableDownloadIndex downloadIndex, DownloaderFactory downloaderFactory)Deprecated.Constructs aDownloadManager.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddDownload(DownloadRequest request)Deprecated.Adds a download defined by the given request.voidaddDownload(DownloadRequest request, int stopReason)Deprecated.Adds a download defined by the given request and with the specified stop reason.voidaddListener(DownloadManager.Listener listener)Deprecated.Adds aDownloadManager.Listener.LoopergetApplicationLooper()Deprecated.List<Download>getCurrentDownloads()Deprecated.Returns current downloads.DownloadIndexgetDownloadIndex()Deprecated.Returns the usedDownloadIndex.booleangetDownloadsPaused()Deprecated.Returns whether downloads are currently paused.intgetMaxParallelDownloads()Deprecated.Returns the maximum number of parallel downloads.intgetMinRetryCount()Deprecated.Returns the minimum number of times that a download will be retried.@com.google.android.exoplayer2.scheduler.Requirements.RequirementFlags intgetNotMetRequirements()Deprecated.Returns the requirements needed for downloads to progress that are not currently met.RequirementsgetRequirements()Deprecated.Returns the requirements needed to be met to progress.booleanisIdle()Deprecated.Returns whether the manager is currently idle.booleanisInitialized()Deprecated.Returns whether the manager has completed initialization.booleanisWaitingForRequirements()Deprecated.Returns whether this manager has one or more downloads that are not progressing for the sole reason that theRequirementsare not met.voidpauseDownloads()Deprecated.Pauses downloads.voidrelease()Deprecated.Stops the downloads and releases resources.voidremoveAllDownloads()Deprecated.Cancels all pending downloads and removes all downloaded data.voidremoveDownload(String id)Deprecated.Cancels the download with theidand removes all downloaded data.voidremoveListener(DownloadManager.Listener listener)Deprecated.Removes aDownloadManager.Listener.voidresumeDownloads()Deprecated.Resumes downloads.voidsetMaxParallelDownloads(int maxParallelDownloads)Deprecated.Sets the maximum number of parallel downloads.voidsetMinRetryCount(int minRetryCount)Deprecated.Sets the minimum number of times that a download will be retried.voidsetRequirements(Requirements requirements)Deprecated.Sets the requirements that need to be met for downloads to progress.voidsetStopReason(String id, int stopReason)Deprecated.Sets the stop reason for one or all downloads.
-
-
-
Field Detail
-
DEFAULT_MAX_PARALLEL_DOWNLOADS
public static final int DEFAULT_MAX_PARALLEL_DOWNLOADS
Deprecated.The default maximum number of parallel downloads.- See Also:
- Constant Field Values
-
DEFAULT_MIN_RETRY_COUNT
public static final int DEFAULT_MIN_RETRY_COUNT
Deprecated.The default minimum number of times a download must be retried before failing.- See Also:
- Constant Field Values
-
DEFAULT_REQUIREMENTS
public static final Requirements DEFAULT_REQUIREMENTS
Deprecated.The default requirement is that the device has network connectivity.
-
-
Constructor Detail
-
DownloadManager
public DownloadManager(Context context, DatabaseProvider databaseProvider, Cache cache, DataSource.Factory upstreamFactory, Executor executor)
Deprecated.Constructs aDownloadManager.- Parameters:
context- Any context.databaseProvider- Provides the SQLite database in which downloads are persisted.cache- A cache to be used to store downloaded data. The cache should be configured with anCacheEvictorthat will not evict downloaded content, for exampleNoOpCacheEvictor.upstreamFactory- ADataSource.Factoryfor creatingDataSources for downloading data.executor- AnExecutorused to download data. PassingRunnable::runwill cause each download task to download data on its own thread. Passing anExecutorthat uses multiple threads will speed up download tasks that can be split into smaller parts for parallel execution.
-
DownloadManager
public DownloadManager(Context context, WritableDownloadIndex downloadIndex, DownloaderFactory downloaderFactory)
Deprecated.Constructs aDownloadManager.- Parameters:
context- Any context.downloadIndex- The download index used to hold the download information.downloaderFactory- A factory for creatingDownloaders.
-
-
Method Detail
-
getApplicationLooper
public Looper getApplicationLooper()
Deprecated.
-
isInitialized
public boolean isInitialized()
Deprecated.Returns whether the manager has completed initialization.
-
isIdle
public boolean isIdle()
Deprecated.Returns whether the manager is currently idle. The manager is idle if all downloads are in a terminal state (i.e. completed or failed), or if no progress can be made (e.g. because the download requirements are not met).
-
isWaitingForRequirements
public boolean isWaitingForRequirements()
Deprecated.Returns whether this manager has one or more downloads that are not progressing for the sole reason that theRequirementsare not met. This is true if:- The
Requirementsare not met. - The downloads are not paused (i.e.
getDownloadsPaused()isfalse). - There are downloads in the
queued state.
- The
-
addListener
public void addListener(DownloadManager.Listener listener)
Deprecated.Adds aDownloadManager.Listener.- Parameters:
listener- The listener to be added.
-
removeListener
public void removeListener(DownloadManager.Listener listener)
Deprecated.Removes aDownloadManager.Listener.- Parameters:
listener- The listener to be removed.
-
getRequirements
public Requirements getRequirements()
Deprecated.Returns the requirements needed to be met to progress.
-
getNotMetRequirements
@RequirementFlags public @com.google.android.exoplayer2.scheduler.Requirements.RequirementFlags int getNotMetRequirements()
Deprecated.Returns the requirements needed for downloads to progress that are not currently met.- Returns:
- The not met
Requirements.RequirementFlags, or 0 if all requirements are met.
-
setRequirements
public void setRequirements(Requirements requirements)
Deprecated.Sets the requirements that need to be met for downloads to progress.- Parameters:
requirements- ARequirements.
-
getMaxParallelDownloads
public int getMaxParallelDownloads()
Deprecated.Returns the maximum number of parallel downloads.
-
setMaxParallelDownloads
public void setMaxParallelDownloads(@IntRange(from=1L) int maxParallelDownloads)Deprecated.Sets the maximum number of parallel downloads.- Parameters:
maxParallelDownloads- The maximum number of parallel downloads. Must be greater than 0.
-
getMinRetryCount
public int getMinRetryCount()
Deprecated.Returns the minimum number of times that a download will be retried. A download will fail if the specified number of retries is exceeded without any progress being made.
-
setMinRetryCount
public void setMinRetryCount(int minRetryCount)
Deprecated.Sets the minimum number of times that a download will be retried. A download will fail if the specified number of retries is exceeded without any progress being made.- Parameters:
minRetryCount- The minimum number of times that a download will be retried.
-
getDownloadIndex
public DownloadIndex getDownloadIndex()
Deprecated.Returns the usedDownloadIndex.
-
getCurrentDownloads
public List<Download> getCurrentDownloads()
Deprecated.Returns current downloads. Downloads that are in terminal states (i.e. completed or failed) are not included. To query all downloads including those in terminal states, usegetDownloadIndex()instead.
-
getDownloadsPaused
public boolean getDownloadsPaused()
Deprecated.Returns whether downloads are currently paused.
-
resumeDownloads
public void resumeDownloads()
Deprecated.Resumes downloads.If the
Requirementsare met up tomaxParallelDownloadswill be started, excluding those with non-zerostopReasons.
-
pauseDownloads
public void pauseDownloads()
Deprecated.Pauses downloads. Downloads that would otherwise be making progress will transition toDownload.STATE_QUEUED.
-
setStopReason
public void setStopReason(@Nullable String id, int stopReason)Deprecated.Sets the stop reason for one or all downloads. To clear the stop reason, passDownload.STOP_REASON_NONE.- Parameters:
id- The content id of the download to update, ornullto set the stop reason for all downloads.stopReason- The stop reason, orDownload.STOP_REASON_NONE.
-
addDownload
public void addDownload(DownloadRequest request)
Deprecated.Adds a download defined by the given request.- Parameters:
request- The download request.
-
addDownload
public void addDownload(DownloadRequest request, int stopReason)
Deprecated.Adds a download defined by the given request and with the specified stop reason.- Parameters:
request- The download request.stopReason- An initial stop reason for the download, orDownload.STOP_REASON_NONEif the download should be started.
-
removeDownload
public void removeDownload(String id)
Deprecated.Cancels the download with theidand removes all downloaded data.- Parameters:
id- The unique content id of the download to be started.
-
removeAllDownloads
public void removeAllDownloads()
Deprecated.Cancels all pending downloads and removes all downloaded data.
-
release
public void release()
Deprecated.Stops the downloads and releases resources. Waits until the downloads are persisted to the download index. The manager must not be accessed after this method has been called.
-
-