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