jellyfin-server/MediaBrowser.Common/ScheduledTasks/ITaskTrigger.cs

37 lines
1.1 KiB
C#
Raw Normal View History

2015-07-28 12:33:30 +00:00
using MediaBrowser.Model.Events;
using MediaBrowser.Model.Tasks;
using System;
2013-02-24 21:53:54 +00: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 21:53:54 +00:00
/// <summary>
/// Stars waiting for the trigger action
/// </summary>
2015-07-28 12:33:30 +00:00
/// <param name="lastResult">The last result.</param>
2013-02-24 21:53:54 +00:00
/// <param name="isApplicationStartup">if set to <c>true</c> [is application startup].</param>
2015-07-28 12:33:30 +00:00
void Start(TaskResult lastResult, bool isApplicationStartup);
2013-02-24 21:53:54 +00: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 21:53:54 +00:00
}
}