Sonarr/NzbDrone.Core/Jobs/CheckpointJob.cs

43 lines
959 B
C#
Raw Normal View History

2012-01-26 01:29:55 +00:00
using System;
using System.Linq;
using Ninject;
2012-02-13 07:49:53 +00:00
using NzbDrone.Common;
2012-01-26 01:29:55 +00:00
using NzbDrone.Core.Model.Notification;
using NzbDrone.Core.Providers;
namespace NzbDrone.Core.Jobs
{
public class CheckpointJob : IJob
{
private readonly AnalyticsProvider _analyticsProvider;
[Inject]
public CheckpointJob(AnalyticsProvider analyticsProvider)
{
_analyticsProvider = analyticsProvider;
}
public CheckpointJob()
{
}
public string Name
{
get { return "Checkpoint Job"; }
}
public TimeSpan DefaultInterval
{
get { return TimeSpan.FromDays(1); }
}
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
{
2012-02-13 07:49:53 +00:00
if(EnviromentProvider.IsProduction)
{
_analyticsProvider.Checkpoint();
}
2012-01-26 01:29:55 +00:00
}
}
}