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

36 lines
880 B
C#
Raw Normal View History

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