You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
856 B
39 lines
856 B
using System;
|
|
using System.Linq;
|
|
using Ninject;
|
|
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)
|
|
{
|
|
_analyticsProvider.Checkpoint();
|
|
}
|
|
}
|
|
} |