Migrate ServerEventNotifier.OnPackageInstallationCompleted to IEventConsumer

This commit is contained in:
Patrick Barron
2020-08-15 23:16:15 -04:00
parent 25437af594
commit e82dd8b70e
2 changed files with 31 additions and 7 deletions

View File

@@ -37,7 +37,6 @@ namespace Emby.Server.Implementations.EntryPoints
public Task RunAsync()
{
_installationManager.PackageInstallationCancelled += OnPackageInstallationCancelled;
_installationManager.PackageInstallationCompleted += OnPackageInstallationCompleted;
return Task.CompletedTask;
}
@@ -47,11 +46,6 @@ namespace Emby.Server.Implementations.EntryPoints
await SendMessageToAdminSessions("PackageInstallationCancelled", e).ConfigureAwait(false);
}
private async void OnPackageInstallationCompleted(object sender, InstallationInfo e)
{
await SendMessageToAdminSessions("PackageInstallationCompleted", e).ConfigureAwait(false);
}
private async Task SendMessageToAdminSessions<T>(string name, T data)
{
try
@@ -79,7 +73,6 @@ namespace Emby.Server.Implementations.EntryPoints
if (dispose)
{
_installationManager.PackageInstallationCancelled -= OnPackageInstallationCancelled;
_installationManager.PackageInstallationCompleted -= OnPackageInstallationCompleted;
}
}
}