1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-04 02:28:21 +00:00
Sonarr/NzbDrone.Core/Jobs/UpdateSceneMappingsJob.cs

37 lines
901 B
C#
Raw Normal View History

using System;
using System.Linq;
2011-12-01 17:33:17 -08:00
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 TimeSpan DefaultInterval
{
get { return TimeSpan.FromHours(12); }
}
public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
{
2011-06-23 18:30:35 -07:00
_sceneNameMappingProvider.UpdateMappings();
}
}
}