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.
58 lines
1.4 KiB
C#
58 lines
1.4 KiB
C#
// <copyright file="StartupTrigger.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Emby.Server.Implementations.ScheduledTasks.Triggers;
|
|
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Model.Tasks;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
/// <summary>
|
|
/// Class StartupTaskTrigger.
|
|
/// </summary>
|
|
public sealed class StartupTrigger : ITaskTrigger
|
|
{
|
|
private const int DelayMs = 3000;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="StartupTrigger"/> class.
|
|
/// </summary>
|
|
/// <param name="taskOptions">The options of this task.</param>
|
|
public StartupTrigger(TaskOptions taskOptions)
|
|
{
|
|
TaskOptions = taskOptions;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public event EventHandler<EventArgs>? Triggered;
|
|
|
|
/// <inheritdoc />
|
|
public TaskOptions TaskOptions { get; }
|
|
|
|
/// <inheritdoc />
|
|
public async void Start(TaskResult? lastResult, ILogger logger, string taskName, bool isApplicationStartup)
|
|
{
|
|
if (isApplicationStartup)
|
|
{
|
|
await Task.Delay(DelayMs).ConfigureAwait(false);
|
|
|
|
OnTriggered();
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void Stop()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called when [triggered].
|
|
/// </summary>
|
|
private void OnTriggered()
|
|
{
|
|
Triggered?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
}
|