Lidarr/NzbDrone.Core/Providers/Jobs/AppUpdateJob.cs

33 lines
822 B
C#
Raw Normal View History

2011-11-14 02:54:09 +00:00
using NzbDrone.Core.Model.Notification;
namespace NzbDrone.Core.Providers.Jobs
{
public class AppUpdateJob : IJob
{
private readonly UpdateProvider _updateProvider;
public AppUpdateJob(UpdateProvider updateProvider)
{
_updateProvider = updateProvider;
}
public string Name
{
get { return "Update Application Job"; }
}
public int DefaultInterval
{
get { return 0; }
}
public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
{
notification.CurrentMessage = "Updating NzbDrone";
var updatePackage = _updateProvider.GetAvilableUpdate();
2011-11-14 03:09:34 +00:00
_updateProvider.StartUpdate(updatePackage);
2011-11-14 02:54:09 +00:00
}
}
}