Radarr/NzbDrone.Core/Jobs/Implementations/UpdateSceneMappingsJob.cs

38 lines
937 B
C#
Raw Normal View History

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