aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Sync/ISyncManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-04-03 21:24:49 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-04-03 21:24:49 -0400
commit7c17c5182f4f4de8c5755eb92e803c0be20d667f (patch)
tree8ee8488eac2b37b31a127875032038e19eb4b1a4 /MediaBrowser.Controller/Sync/ISyncManager.cs
parent4f7a69f3689c6aeba6021629818e4e3cced17475 (diff)
add bulk sync remove
Diffstat (limited to 'MediaBrowser.Controller/Sync/ISyncManager.cs')
-rw-r--r--MediaBrowser.Controller/Sync/ISyncManager.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Sync/ISyncManager.cs b/MediaBrowser.Controller/Sync/ISyncManager.cs
index c51c8c1ba..3b6e20edc 100644
--- a/MediaBrowser.Controller/Sync/ISyncManager.cs
+++ b/MediaBrowser.Controller/Sync/ISyncManager.cs
@@ -74,6 +74,14 @@ namespace MediaBrowser.Controller.Sync
Task CancelJob(string id);
/// <summary>
+ /// Cancels the items.
+ /// </summary>
+ /// <param name="targetId">The target identifier.</param>
+ /// <param name="itemIds">The item ids.</param>
+ /// <returns>Task.</returns>
+ Task CancelItems(string targetId, IEnumerable<string> itemIds);
+
+ /// <summary>
/// Adds the parts.
/// </summary>
void AddParts(IEnumerable<ISyncProvider> providers);