mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
39 lines
965 B
C#
39 lines
965 B
C#
using System;
|
|
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Jobs;
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
namespace NzbDrone.Core.Lifecycle
|
|
{
|
|
public class AppRestartJob : IJob
|
|
{
|
|
private readonly IHostController _hostController;
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public AppRestartJob(IHostController hostController)
|
|
{
|
|
_hostController = hostController;
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return "Restart NzbDrone"; }
|
|
}
|
|
|
|
public TimeSpan DefaultInterval
|
|
{
|
|
get { return TimeSpan.FromTicks(0); }
|
|
}
|
|
|
|
public virtual void Start(ProgressNotification notification, dynamic options)
|
|
{
|
|
notification.CurrentMessage = "Restarting NzbDrone";
|
|
logger.Info("Restarting NzbDrone");
|
|
|
|
_hostController.StopServer();
|
|
}
|
|
}
|
|
} |