| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | using MediaBrowser.Model.Events;using MediaBrowser.Model.Tasks;using System;using System.Collections.Generic;namespace MediaBrowser.Common.ScheduledTasks{    /// <summary>    /// Interface IScheduledTaskWorker    /// </summary>    public interface IScheduledTaskWorker : IDisposable    {        /// <summary>        /// Occurs when [task progress].        /// </summary>        event EventHandler<GenericEventArgs<double>> TaskProgress;        /// <summary>        /// Gets or sets the scheduled task.        /// </summary>        /// <value>The scheduled task.</value>        IScheduledTask ScheduledTask { get; }        /// <summary>        /// Gets the last execution result.        /// </summary>        /// <value>The last execution result.</value>        TaskResult LastExecutionResult { get; }        /// <summary>        /// Gets the name.        /// </summary>        /// <value>The name.</value>        string Name { get; }        /// <summary>        /// Gets the description.        /// </summary>        /// <value>The description.</value>        string Description { get; }        /// <summary>        /// Gets the category.        /// </summary>        /// <value>The category.</value>        string Category { get; }        /// <summary>        /// Gets the state.        /// </summary>        /// <value>The state.</value>        TaskState State { get; }        /// <summary>        /// Gets the current progress.        /// </summary>        /// <value>The current progress.</value>        double? CurrentProgress { get; }        /// <summary>        /// Gets the triggers that define when the task will run        /// </summary>        /// <value>The triggers.</value>        /// <exception cref="System.ArgumentNullException">value</exception>        IEnumerable<ITaskTrigger> Triggers { get; set; }        /// <summary>        /// Gets the unique id.        /// </summary>        /// <value>The unique id.</value>        string Id { get; }        /// <summary>        /// Reloads the trigger events.        /// </summary>        void ReloadTriggerEvents();    }}
 |