jellyfin/MediaBrowser.Common/ScheduledTasks/ITaskTrigger.cs

38 lines
1.2 KiB
C#
Raw Normal View History

2015-07-28 14:33:30 +02:00
using MediaBrowser.Model.Events;
using MediaBrowser.Model.Tasks;
using System;
2016-05-12 21:21:43 +02:00
using MediaBrowser.Model.Logging;
2013-02-24 22:53:54 +01:00
namespace MediaBrowser.Common.ScheduledTasks
{
/// <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>
2015-07-28 14:33:30 +02:00
/// <param name="lastResult">The last result.</param>
2013-02-24 22:53:54 +01:00
/// <param name="isApplicationStartup">if set to <c>true</c> [is application startup].</param>
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
}
}