Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pause using DownloadManager?

I want to achieve that when downloading, it can be paused, stopped by user. How can I achieve this with DownloadManager?

like image 900
user898366 Avatar asked Aug 31 '11 08:08

user898366


1 Answers

You can remove a download from the queue. Then you can start it up again, passing the Range HTTP Header when re-adding it to the queue (like TryTryAgain mentioned). I don't believe this currently can be done more easily.

like image 198
Robin Kanters Avatar answered Oct 12 '22 07:10

Robin Kanters