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.
jellyfin/MediaBrowser.Model/Tasks/ITaskTrigger.cs

36 lines
1.1 KiB

using System;
using Microsoft.Extensions.Logging;
5 years ago
namespace MediaBrowser.Model.Tasks
{
/// <summary>
/// Interface ITaskTrigger.
5 years ago
/// </summary>
public interface ITaskTrigger
{
/// <summary>
/// Fires when the trigger condition is satisfied and the task should run.
5 years ago
/// </summary>
event EventHandler<EventArgs>? Triggered;
5 years ago
/// <summary>
/// Gets the options of this task.
5 years ago
/// </summary>
TaskOptions TaskOptions { get; }
5 years ago
/// <summary>
/// Stars waiting for the trigger action.
5 years ago
/// </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 fired during startup.</param>
2 years ago
void Start(TaskResult? lastResult, ILogger logger, string taskName, bool isApplicationStartup);
5 years ago
/// <summary>
/// Stops waiting for the trigger action.
5 years ago
/// </summary>
void Stop();
}
}