From 07072d9f7bf269926a4d7aad580e2e78c444a2cd Mon Sep 17 00:00:00 2001 From: dkanada Date: Thu, 31 Jan 2019 15:12:18 +0900 Subject: move all scheduled tasks and triggers into folders --- .../ScheduledTasks/RefreshMediaLibraryTask.cs | 81 ---------------------- 1 file changed, 81 deletions(-) delete mode 100644 Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs (limited to 'Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs') diff --git a/Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs b/Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs deleted file mode 100644 index f6fa64d13..000000000 --- a/Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Threading; -using System.Threading.Tasks; -using Emby.Server.Implementations.Library; -using MediaBrowser.Controller.Configuration; -using MediaBrowser.Controller.Library; -using MediaBrowser.Model.Tasks; - -namespace Emby.Server.Implementations.ScheduledTasks -{ - /// - /// Class RefreshMediaLibraryTask - /// - public class RefreshMediaLibraryTask : IScheduledTask - { - /// - /// The _library manager - /// - private readonly ILibraryManager _libraryManager; - private readonly IServerConfigurationManager _config; - - /// - /// Initializes a new instance of the class. - /// - /// The library manager. - public RefreshMediaLibraryTask(ILibraryManager libraryManager, IServerConfigurationManager config) - { - _libraryManager = libraryManager; - _config = config; - } - - /// - /// Creates the triggers that define when the task will run - /// - /// IEnumerable{BaseTaskTrigger}. - public IEnumerable GetDefaultTriggers() - { - return new[] { - - // Every so often - new TaskTriggerInfo { Type = TaskTriggerInfo.TriggerInterval, IntervalTicks = TimeSpan.FromHours(12).Ticks} - }; - } - - /// - /// Executes the internal. - /// - /// The cancellation token. - /// The progress. - /// Task. - public Task Execute(CancellationToken cancellationToken, IProgress progress) - { - cancellationToken.ThrowIfCancellationRequested(); - - progress.Report(0); - - return ((LibraryManager)_libraryManager).ValidateMediaLibraryInternal(progress, cancellationToken); - } - - /// - /// Gets the name. - /// - /// The name. - public string Name => "Scan media library"; - - /// - /// Gets the description. - /// - /// The description. - public string Description => "Scans your media library and refreshes metatata based on configuration."; - - /// - /// Gets the category. - /// - /// The category. - public string Category => "Library"; - - public string Key => "RefreshLibrary"; - } -} -- cgit v1.2.3