You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.6 KiB
64 lines
1.6 KiB
6 years ago
|
using System;
|
||
8 years ago
|
using System.Threading.Tasks;
|
||
|
using MediaBrowser.Model.Tasks;
|
||
6 years ago
|
using Microsoft.Extensions.Logging;
|
||
8 years ago
|
|
||
7 years ago
|
namespace Emby.Server.Implementations.ScheduledTasks
|
||
8 years ago
|
{
|
||
|
/// <summary>
|
||
|
/// Class StartupTaskTrigger
|
||
|
/// </summary>
|
||
|
public class StartupTrigger : ITaskTrigger
|
||
|
{
|
||
|
public int DelayMs { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
6 years ago
|
/// Gets or sets the options of this task.
|
||
8 years ago
|
/// </summary>
|
||
6 years ago
|
public TaskOptions TaskOptions { get; set; }
|
||
8 years ago
|
|
||
|
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>
|
||
6 years ago
|
public event EventHandler<EventArgs> Triggered;
|
||
8 years ago
|
|
||
|
/// <summary>
|
||
|
/// Called when [triggered].
|
||
|
/// </summary>
|
||
|
private void OnTriggered()
|
||
|
{
|
||
|
if (Triggered != null)
|
||
|
{
|
||
6 years ago
|
Triggered(this, EventArgs.Empty);
|
||
8 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|