| 12345678910111213141516171819202122232425262728293031 | using System.Threading;using System.Threading.Tasks;using MediaBrowser.Controller.Events;using MediaBrowser.Controller.Events.Updates;using MediaBrowser.Controller.Session;namespace Jellyfin.Server.Implementations.Events.Consumers.Updates{    /// <summary>    /// Notifies admin users when a plugin is being installed.    /// </summary>    public class PluginInstallingNotifier : IEventConsumer<PluginInstallingEventArgs>    {        private readonly ISessionManager _sessionManager;        /// <summary>        /// Initializes a new instance of the <see cref="PluginInstallingNotifier"/> class.        /// </summary>        /// <param name="sessionManager">The session manager.</param>        public PluginInstallingNotifier(ISessionManager sessionManager)        {            _sessionManager = sessionManager;        }        /// <inheritdoc />        public async Task OnEvent(PluginInstallingEventArgs eventArgs)        {            await _sessionManager.SendMessageToAdminSessions("PackageInstalling", eventArgs.Argument, CancellationToken.None).ConfigureAwait(false);        }    }}
 |