smanikandan14 / ThinDownloadManager

To download files and to avoid using DOWNLOAD_WITHOUT_NOTIFICATION permission if you are using Android's DownloadManager in your apps.
Apache License 2.0
783 stars 186 forks source link

Concurrent download? #51

Closed apreasher closed 8 years ago

apreasher commented 8 years ago

Is concurrent download supported?

smanikandan14 commented 8 years ago

Yes, the downloads are carried out concurrent depending on the available processors on the device. You can check this in creation of DownloadRequestQueue.

int processors = Runtime.getRuntime().availableProcessors();
mDownloadDispatchers = new DownloadDispatcher[processors];