jellyfin/Emby.Server.Implementations/ScheduledTasks/StartupTrigger.cs

64 lines
1.6 KiB
C#
Raw Normal View History

using System;
2016-10-29 07:40:15 +02:00
using System.Threading.Tasks;
using MediaBrowser.Model.Tasks;
using Microsoft.Extensions.Logging;
2016-10-29 07:40:15 +02:00
namespace Emby.Server.Implementations.ScheduledTasks
2016-10-29 07:40:15 +02:00
{
/// <summary>
/// Class StartupTaskTrigger
/// </summary>
public class StartupTrigger : ITaskTrigger
{
public int DelayMs { get; set; }
/// <summary>
2018-09-12 19:26:21 +02:00
/// Gets or sets the options of this task.
2016-10-29 07:40:15 +02:00
/// </summary>
2018-09-12 19:26:21 +02:00
public TaskOptions TaskOptions { get; set; }
2016-10-29 07:40:15 +02:00
public StartupTrigger()
{
DelayMs = 3000;
}
/// <summary>
/// Stars waiting for the trigger action
/// </summary>
/// <param name="lastResult">The last result.</param>
/// <param name="isApplicationStartup">if set to <c>true</c> [is application startup].</param>
public async void Start(TaskResult lastResult, ILogger logger, string taskName, bool isApplicationStartup)
{
if (isApplicationStartup)
{
await Task.Delay(DelayMs).ConfigureAwait(false);
OnTriggered();
}
}
/// <summary>
/// Stops waiting for the trigger action
/// </summary>
public void Stop()
{
}
/// <summary>
/// Occurs when [triggered].
/// </summary>
2018-09-12 19:26:21 +02:00
public event EventHandler<EventArgs> Triggered;
2016-10-29 07:40:15 +02:00
/// <summary>
/// Called when [triggered].
/// </summary>
private void OnTriggered()
{
if (Triggered != null)
{
2018-09-12 19:26:21 +02:00
Triggered(this, EventArgs.Empty);
2016-10-29 07:40:15 +02:00
}
}
}
}