jellyfin/MediaBrowser.Model/Tasks/ITaskTrigger.cs

35 lines
1,013 B
C#
Raw Normal View History

2016-10-23 21:47:34 +02:00
using System;
using MediaBrowser.Model.Events;
2016-05-12 21:21:43 +02:00
using MediaBrowser.Model.Logging;
2013-02-24 22:53:54 +01:00
2016-10-23 21:47:34 +02:00
namespace MediaBrowser.Model.Tasks
2013-02-24 22:53:54 +01:00
{
/// <summary>
/// Interface ITaskTrigger
/// </summary>
public interface ITaskTrigger
{
/// <summary>
/// Fires when the trigger condition is satisfied and the task should run
/// </summary>
event EventHandler<GenericEventArgs<TaskExecutionOptions>> Triggered;
2013-02-24 22:53:54 +01:00
/// <summary>
/// Stars waiting for the trigger action
/// </summary>
2016-05-12 21:21:43 +02:00
void Start(TaskResult lastResult, ILogger logger, string taskName, bool isApplicationStartup);
2013-02-24 22:53:54 +01:00
/// <summary>
/// Stops waiting for the trigger action
/// </summary>
void Stop();
/// <summary>
/// Gets or sets the execution properties of this task.
/// </summary>
/// <value>
/// The execution properties of this task.
/// </value>
TaskExecutionOptions TaskOptions { get; set; }
2013-02-24 22:53:54 +01:00
}
}