1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Core/Jobs/UpdateSceneMappingsJob.cs

37 lines
901 B
C#
Raw Normal View History

using System;
using System.Linq;
2011-12-02 02:33:17 +01:00
using NzbDrone.Core.Model.Notification;
using NzbDrone.Core.Providers;
2011-12-02 02:33:17 +01:00
namespace NzbDrone.Core.Jobs
{
2011-12-02 02:45:19 +01:00
public class UpdateSceneMappingsJob : IJob
{
private readonly SceneMappingProvider _sceneNameMappingProvider;
public UpdateSceneMappingsJob(SceneMappingProvider sceneNameMappingProvider)
{
_sceneNameMappingProvider = sceneNameMappingProvider;
}
public UpdateSceneMappingsJob()
{
2011-06-24 03:30:35 +02:00
}
public string Name
{
get { return "Update Scene Mappings"; }
}
public TimeSpan DefaultInterval
{
get { return TimeSpan.FromHours(12); }
}
public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
{
2011-06-24 03:30:35 +02:00
_sceneNameMappingProvider.UpdateMappings();
}
}
}