mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added Timer, will hold timer information for RSS Sync and eventually backlog searching.
Attempt at styling configuration page, lots of work to go though.
This commit is contained in:
parent
e199843c92
commit
63336ed58d
9 changed files with 202 additions and 88 deletions
37
NzbDrone.Core/Providers/TimerProvider.cs
Normal file
37
NzbDrone.Core/Providers/TimerProvider.cs
Normal file
|
@ -0,0 +1,37 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Timers;
|
||||
using NzbDrone.Core.Model.Notification;
|
||||
using Timer = System.Threading.Timer;
|
||||
|
||||
namespace NzbDrone.Core.Providers
|
||||
{
|
||||
public class TimerProvider : ITimerProvider
|
||||
{
|
||||
private ProgressNotification _seriesSyncNotification;
|
||||
private Thread _seriesSyncThread;
|
||||
private System.Timers.Timer _rssSyncTimer;
|
||||
|
||||
#region ITimerProvider Members
|
||||
|
||||
public void ResetTimer()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public void StartTimer()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void StopTimer()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue