1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Jobs/UpdateSceneMappingsJob.cs

39 lines
944 B
C#
Raw Normal View History

using System;
using System.Linq;
2013-03-05 08:20:47 +03:00
using NzbDrone.Core.Jobs.Framework;
2011-12-02 04:33:17 +03:00
using NzbDrone.Core.Model.Notification;
using NzbDrone.Core.Providers;
2013-03-02 21:25:39 +03:00
using NzbDrone.Core.ReferenceData;
2011-12-02 04:33:17 +03:00
namespace NzbDrone.Core.Jobs
{
2011-12-02 04:45:19 +03:00
public class UpdateSceneMappingsJob : IJob
{
2013-03-02 21:25:39 +03:00
private readonly SceneMappingService _sceneNameMappingService;
2013-03-02 21:25:39 +03:00
public UpdateSceneMappingsJob(SceneMappingService sceneNameMappingService)
{
2013-03-02 21:25:39 +03:00
_sceneNameMappingService = sceneNameMappingService;
}
public UpdateSceneMappingsJob()
{
2011-06-24 04:30:35 +03:00
}
public string Name
{
get { return "Update Scene Mappings"; }
}
public TimeSpan DefaultInterval
{
get { return TimeSpan.FromHours(6); }
}
2012-09-10 22:04:17 +03:00
public virtual void Start(ProgressNotification notification, dynamic options)
{
2013-03-02 21:25:39 +03:00
_sceneNameMappingService.UpdateMappings();
}
}
}