2014-07-19 17:37:06 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2014-04-19 15:09:22 +00:00
|
|
|
|
using NzbDrone.Core.Indexers;
|
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
|
|
|
|
{
|
2014-04-19 15:09:22 +00:00
|
|
|
|
DownloadProtocol Protocol { get; }
|
|
|
|
|
|
2014-07-19 17:37:06 +00:00
|
|
|
|
String Download(RemoteEpisode remoteEpisode);
|
2014-04-19 15:09:22 +00:00
|
|
|
|
IEnumerable<DownloadClientItem> GetItems();
|
2014-12-23 01:17:48 +00:00
|
|
|
|
void RemoveItem(string downloadId, bool deleteData);
|
2014-06-06 05:55:38 +00:00
|
|
|
|
DownloadClientStatus GetStatus();
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|