jellyfin/MediaBrowser.Model/Tasks/ITaskTrigger.cs

36 lines
1.1 KiB
C#
Raw Normal View History

using System;
using Microsoft.Extensions.Logging;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Tasks
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Interface ITaskTrigger.
2018-12-28 00:27:57 +01:00
/// </summary>
public interface ITaskTrigger
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Fires when the trigger condition is satisfied and the task should run.
2018-12-28 00:27:57 +01:00
/// </summary>
event EventHandler<EventArgs>? Triggered;
2018-12-28 00:27:57 +01:00
/// <summary>
2021-05-28 14:33:54 +02:00
/// Gets the options of this task.
2018-12-28 00:27:57 +01:00
/// </summary>
2021-05-28 14:33:54 +02:00
TaskOptions TaskOptions { get; }
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// Stars waiting for the trigger action.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <param name="lastResult">Result of the last run triggered task.</param>
/// <param name="logger">The <see cref="ILogger"/>.</param>
/// <param name="taskName">The name of the task.</param>
/// <param name="isApplicationStartup">Whether or not this is is fired during startup.</param>
2021-12-15 18:25:36 +01:00
void Start(TaskResult? lastResult, ILogger logger, string taskName, bool isApplicationStartup);
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// Stops waiting for the trigger action.
2018-12-28 00:27:57 +01:00
/// </summary>
void Stop();
}
}