af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
// <copyright file="PendingRestartNotifier.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Server.Implementations.Events.Consumers.System
|
|
{
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Jellyfin.Data.Events.System;
|
|
using MediaBrowser.Controller.Events;
|
|
using MediaBrowser.Controller.Session;
|
|
|
|
/// <summary>
|
|
/// Notifies users when there is a pending restart.
|
|
/// </summary>
|
|
public class PendingRestartNotifier : IEventConsumer<PendingRestartEventArgs>
|
|
{
|
|
private readonly ISessionManager _sessionManager;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PendingRestartNotifier"/> class.
|
|
/// </summary>
|
|
/// <param name="sessionManager">The session manager.</param>
|
|
public PendingRestartNotifier(ISessionManager sessionManager)
|
|
{
|
|
_sessionManager = sessionManager;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task OnEvent(PendingRestartEventArgs eventArgs)
|
|
{
|
|
await _sessionManager.SendRestartRequiredNotification(CancellationToken.None).ConfigureAwait(false);
|
|
}
|
|
}
|
|
}
|