From 1ad990ad720931309afadd9f7912d66595dcc04e Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 19 Aug 2017 15:43:35 -0400 Subject: update live tv data transfer --- MediaBrowser.Controller/Sync/ISyncManager.cs | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'MediaBrowser.Controller/Sync/ISyncManager.cs') diff --git a/MediaBrowser.Controller/Sync/ISyncManager.cs b/MediaBrowser.Controller/Sync/ISyncManager.cs index 66f64464f1..910d697ec0 100644 --- a/MediaBrowser.Controller/Sync/ISyncManager.cs +++ b/MediaBrowser.Controller/Sync/ISyncManager.cs @@ -79,7 +79,7 @@ namespace MediaBrowser.Controller.Sync /// The target identifier. /// The item ids. /// Task. - Task CancelItems(string targetId, IEnumerable itemIds); + Task CancelItems(string targetId, string[] itemIds); /// /// Adds the parts. @@ -89,9 +89,9 @@ namespace MediaBrowser.Controller.Sync /// /// Gets the synchronize targets. /// - IEnumerable GetSyncTargets(string userId); + List GetSyncTargets(string userId); - IEnumerable GetSyncTargets(string userId, bool? supportsRemoteSync); + List GetSyncTargets(string userId, bool? supportsRemoteSync); /// /// Supportses the synchronize. @@ -160,28 +160,24 @@ namespace MediaBrowser.Controller.Sync /// Gets the quality options. /// /// The target identifier. - /// IEnumerable<SyncQualityOption>. - IEnumerable GetQualityOptions(string targetId); + List GetQualityOptions(string targetId); /// /// Gets the quality options. /// /// The target identifier. /// The user. - /// IEnumerable<SyncQualityOption>. - IEnumerable GetQualityOptions(string targetId, User user); + List GetQualityOptions(string targetId, User user); /// /// Gets the profile options. /// /// The target identifier. - /// IEnumerable<SyncQualityOption>. - IEnumerable GetProfileOptions(string targetId); + List GetProfileOptions(string targetId); /// /// Gets the profile options. /// /// The target identifier. /// The user. - /// IEnumerable<SyncProfileOption>. - IEnumerable GetProfileOptions(string targetId, User user); + List GetProfileOptions(string targetId, User user); } } -- cgit v1.2.3