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

40 lines
867 B
C#
Raw Normal View History

2012-01-26 02:29:55 +01:00
using System;
using System.Linq;
using Ninject;
2012-02-13 08:49:53 +01:00
using NzbDrone.Common;
2012-01-26 02:29:55 +01: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()
{
2012-02-15 03:20:32 +01:00
2012-01-26 02:29:55 +01:00
}
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-15 03:20:32 +01:00
_analyticsProvider.Checkpoint();
2012-01-26 02:29:55 +01:00
}
}
}