mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
33 lines
838 B
C#
33 lines
838 B
C#
using System.Timers;
|
|
using NzbDrone.Common.Eventing;
|
|
using NzbDrone.Core.Lifecycle;
|
|
|
|
namespace NzbDrone.Core.Jobs
|
|
{
|
|
public class JobTimer :
|
|
IHandle<ApplicationStartedEvent>,
|
|
IHandle<ApplicationShutdownRequested>
|
|
{
|
|
private readonly IJobController _jobController;
|
|
private readonly Timer _timer;
|
|
|
|
public JobTimer(IJobController jobController)
|
|
{
|
|
_jobController = jobController;
|
|
_timer = new Timer();
|
|
|
|
}
|
|
|
|
public void Handle(ApplicationStartedEvent message)
|
|
{
|
|
_timer.Interval = 1000 * 30;
|
|
_timer.Elapsed += (o, args) => _jobController.EnqueueScheduled();
|
|
_timer.Start();
|
|
}
|
|
|
|
public void Handle(ApplicationShutdownRequested message)
|
|
{
|
|
_timer.Stop();
|
|
}
|
|
}
|
|
} |