mirror of https://github.com/Sonarr/Sonarr
Handle events asynchronously for notifications
Fixed: Slow notification sending slowing down imports Closes #4348
This commit is contained in:
parent
5301620ecf
commit
46da657740
|
@ -15,12 +15,12 @@ using NzbDrone.Core.Tv.Events;
|
||||||
namespace NzbDrone.Core.Notifications
|
namespace NzbDrone.Core.Notifications
|
||||||
{
|
{
|
||||||
public class NotificationService
|
public class NotificationService
|
||||||
: IHandle<EpisodeGrabbedEvent>,
|
: IHandleAsync<EpisodeGrabbedEvent>,
|
||||||
IHandle<EpisodeImportedEvent>,
|
IHandleAsync<EpisodeImportedEvent>,
|
||||||
IHandle<SeriesRenamedEvent>,
|
IHandleAsync<SeriesRenamedEvent>,
|
||||||
IHandle<SeriesDeletedEvent>,
|
IHandleAsync<SeriesDeletedEvent>,
|
||||||
IHandle<EpisodeFileDeletedEvent>,
|
IHandleAsync<EpisodeFileDeletedEvent>,
|
||||||
IHandle<HealthCheckFailedEvent>,
|
IHandleAsync<HealthCheckFailedEvent>,
|
||||||
IHandleAsync<DeleteCompletedEvent>,
|
IHandleAsync<DeleteCompletedEvent>,
|
||||||
IHandleAsync<DownloadsProcessedEvent>,
|
IHandleAsync<DownloadsProcessedEvent>,
|
||||||
IHandleAsync<RenameCompletedEvent>,
|
IHandleAsync<RenameCompletedEvent>,
|
||||||
|
@ -109,7 +109,7 @@ namespace NzbDrone.Core.Notifications
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(EpisodeGrabbedEvent message)
|
public void HandleAsync(EpisodeGrabbedEvent message)
|
||||||
{
|
{
|
||||||
var grabMessage = new GrabMessage
|
var grabMessage = new GrabMessage
|
||||||
{
|
{
|
||||||
|
@ -136,7 +136,7 @@ namespace NzbDrone.Core.Notifications
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(EpisodeImportedEvent message)
|
public void HandleAsync(EpisodeImportedEvent message)
|
||||||
{
|
{
|
||||||
if (!message.NewDownload)
|
if (!message.NewDownload)
|
||||||
{
|
{
|
||||||
|
@ -174,7 +174,7 @@ namespace NzbDrone.Core.Notifications
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(SeriesRenamedEvent message)
|
public void HandleAsync(SeriesRenamedEvent message)
|
||||||
{
|
{
|
||||||
foreach (var notification in _notificationFactory.OnRenameEnabled())
|
foreach (var notification in _notificationFactory.OnRenameEnabled())
|
||||||
{
|
{
|
||||||
|
@ -193,7 +193,7 @@ namespace NzbDrone.Core.Notifications
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(EpisodeFileDeletedEvent message)
|
public void HandleAsync(EpisodeFileDeletedEvent message)
|
||||||
{
|
{
|
||||||
if (message.EpisodeFile.Episodes.Value.Empty())
|
if (message.EpisodeFile.Episodes.Value.Empty())
|
||||||
{
|
{
|
||||||
|
@ -227,7 +227,7 @@ namespace NzbDrone.Core.Notifications
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(SeriesDeletedEvent message)
|
public void HandleAsync(SeriesDeletedEvent message)
|
||||||
{
|
{
|
||||||
var deleteMessage = new SeriesDeleteMessage(message.Series,message.DeleteFiles);
|
var deleteMessage = new SeriesDeleteMessage(message.Series,message.DeleteFiles);
|
||||||
|
|
||||||
|
@ -247,7 +247,7 @@ namespace NzbDrone.Core.Notifications
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(HealthCheckFailedEvent message)
|
public void HandleAsync(HealthCheckFailedEvent message)
|
||||||
{
|
{
|
||||||
foreach (var notification in _notificationFactory.OnHealthIssueEnabled())
|
foreach (var notification in _notificationFactory.OnHealthIssueEnabled())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue