jellyfin/MediaBrowser.Common/ScheduledTasks/IScheduledTask.cs

46 lines
1.2 KiB
C#
Raw Normal View History

using System;
2013-02-21 02:33:05 +01:00
using System.Collections.Generic;
using System.Threading;
2013-02-21 02:33:05 +01:00
using System.Threading.Tasks;
namespace MediaBrowser.Common.ScheduledTasks
{
/// <summary>
/// Interface IScheduledTaskWorker
2013-02-21 02:33:05 +01:00
/// </summary>
public interface IScheduledTask
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets the name of the task
/// </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>
/// Executes the task
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task.</returns>
Task Execute(CancellationToken cancellationToken, IProgress<double> progress);
2013-02-24 22:53:54 +01:00
/// <summary>
/// Gets the default triggers.
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
IEnumerable<ITaskTrigger> GetDefaultTriggers();
2013-02-21 02:33:05 +01:00
}
}