2015-07-28 12:33:30 +00:00
|
|
|
|
using MediaBrowser.Model.Events;
|
|
|
|
|
using MediaBrowser.Model.Tasks;
|
|
|
|
|
using System;
|
2016-05-12 19:21:43 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
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>
|
2015-02-25 20:55:01 +00:00
|
|
|
|
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>
|
2016-05-12 19:21:43 +00:00
|
|
|
|
void Start(TaskResult lastResult, ILogger logger, string taskName, bool isApplicationStartup);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Stops waiting for the trigger action
|
|
|
|
|
/// </summary>
|
|
|
|
|
void Stop();
|
2015-02-25 20:55:01 +00:00
|
|
|
|
|
|
|
|
|
/// <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
|
|
|
|
}
|
|
|
|
|
}
|