1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 08:21:46 +02:00
Radarr/NzbDrone.Core/Providers/NotificationProvider.cs

27 lines
697 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2011-04-10 04:44:01 +02:00
using System.Linq;
using NzbDrone.Core.Model.Notification;
namespace NzbDrone.Core.Providers
{
2011-04-09 01:48:47 +02:00
public class NotificationProvider
{
2011-11-21 05:43:16 +01:00
private static ProgressNotification _currentNotification;
2011-11-21 05:43:16 +01:00
public virtual ProgressNotification GetCurrent()
{
2012-01-23 08:43:54 +01:00
if (_currentNotification == null || _currentNotification.CompletedTime < DateTime.Now.AddSeconds(-6))
2010-11-06 01:43:13 +01:00
{
2011-11-21 05:43:16 +01:00
return null;
2010-11-06 01:43:13 +01:00
}
2011-11-21 05:43:16 +01:00
return _currentNotification;
}
2011-04-10 04:44:01 +02:00
public virtual void Register(ProgressNotification notification)
{
2011-11-21 05:43:16 +01:00
_currentNotification = notification;
2011-04-10 04:44:01 +02:00
}
}
}