You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
663 B
26 lines
663 B
using System;
|
|
using System.Linq;
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class NotificationProvider
|
|
{
|
|
private static ProgressNotification _currentNotification;
|
|
|
|
public virtual ProgressNotification GetCurrent()
|
|
{
|
|
if (_currentNotification == null || _currentNotification.CompletedTime < DateTime.Now.AddSeconds(-6))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return _currentNotification;
|
|
}
|
|
|
|
public virtual void Register(ProgressNotification notification)
|
|
{
|
|
_currentNotification = notification;
|
|
}
|
|
}
|
|
} |