mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	Found via `codespell -q 3 -S ./Emby.Server.Implementations/Localization -L allready,doesnt,inh,receivedfrom,whoknows`
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using Microsoft.Extensions.Logging;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Tasks
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Interface ITaskTrigger.
 | 
						|
    /// </summary>
 | 
						|
    public interface ITaskTrigger
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Fires when the trigger condition is satisfied and the task should run.
 | 
						|
        /// </summary>
 | 
						|
        event EventHandler<EventArgs>? Triggered;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the options of this task.
 | 
						|
        /// </summary>
 | 
						|
        TaskOptions TaskOptions { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Stars waiting for the trigger action.
 | 
						|
        /// </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 is fired during startup.</param>
 | 
						|
        void Start(TaskResult? lastResult, ILogger logger, string taskName, bool isApplicationStartup);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Stops waiting for the trigger action.
 | 
						|
        /// </summary>
 | 
						|
        void Stop();
 | 
						|
    }
 | 
						|
}
 |