2013-04-15 01:41:39 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-07-08 03:15:15 +00:00
|
|
|
|
using NzbDrone.Core.Parser.Model;
|
2014-02-14 05:31:49 +00:00
|
|
|
|
using NzbDrone.Core.ThingiProvider;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2013-03-05 05:33:34 +00:00
|
|
|
|
namespace NzbDrone.Core.Download
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
2014-02-14 05:31:49 +00:00
|
|
|
|
public interface IDownloadClient : IProvider
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
2013-10-21 01:30:46 +00:00
|
|
|
|
string DownloadNzb(RemoteEpisode remoteEpisode);
|
2013-04-15 01:41:39 +00:00
|
|
|
|
IEnumerable<QueueItem> GetQueue();
|
2013-10-22 07:31:36 +00:00
|
|
|
|
IEnumerable<HistoryItem> GetHistory(int start = 0, int limit = 0);
|
2013-10-25 05:55:32 +00:00
|
|
|
|
void RemoveFromQueue(string id);
|
|
|
|
|
void RemoveFromHistory(string id);
|
2014-04-01 20:07:41 +00:00
|
|
|
|
void RetryDownload(string id);
|
2014-02-26 05:40:47 +00:00
|
|
|
|
void Test();
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|