From b7867214ef317bbf6502e53701a990ec5f13b645 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 11 Aug 2017 17:55:48 -0400 Subject: update download error handling --- MediaBrowser.Controller/Sync/ISyncRepository.cs | 80 ------------------------- 1 file changed, 80 deletions(-) delete mode 100644 MediaBrowser.Controller/Sync/ISyncRepository.cs (limited to 'MediaBrowser.Controller/Sync/ISyncRepository.cs') diff --git a/MediaBrowser.Controller/Sync/ISyncRepository.cs b/MediaBrowser.Controller/Sync/ISyncRepository.cs deleted file mode 100644 index 8e9b2bf77..000000000 --- a/MediaBrowser.Controller/Sync/ISyncRepository.cs +++ /dev/null @@ -1,80 +0,0 @@ -using System.Collections.Generic; -using MediaBrowser.Model.Querying; -using MediaBrowser.Model.Sync; -using System.Threading.Tasks; - -namespace MediaBrowser.Controller.Sync -{ - public interface ISyncRepository - { - /// - /// Gets the job. - /// - /// The identifier. - /// SyncJob. - SyncJob GetJob(string id); - - /// - /// Creates the specified job. - /// - /// The job. - /// Task. - Task Create(SyncJob job); - - /// - /// Updates the specified job. - /// - /// The job. - /// Task. - Task Update(SyncJob job); - - /// - /// Deletes the job. - /// - /// The identifier. - /// Task. - Task DeleteJob(string id); - - /// - /// Gets the jobs. - /// - /// The query. - /// QueryResult<SyncJob>. - QueryResult GetJobs(SyncJobQuery query); - - /// - /// Gets the job item. - /// - /// The identifier. - /// SyncJobItem. - SyncJobItem GetJobItem(string id); - - /// - /// Creates the specified job item. - /// - /// The job item. - /// Task. - Task Create(SyncJobItem jobItem); - - /// - /// Updates the specified job item. - /// - /// The job item. - /// Task. - Task Update(SyncJobItem jobItem); - - /// - /// Gets the job items. - /// - /// The query. - /// IEnumerable<SyncJobItem>. - QueryResult GetJobItems(SyncJobItemQuery query); - - /// - /// Gets the library item ids. - /// - /// The query. - /// QueryResult<System.String>. - Dictionary GetSyncedItemProgresses(SyncJobItemQuery query); - } -} -- cgit v1.2.3