1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/NzbDrone.Core/Jobs/Implementations/UpdateSceneMappingsJob.cs

38 lines
937 B
C#
Raw Normal View History

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