jellyfin/MediaBrowser.Common/ScheduledTasks/ITaskManager.cs

56 lines
1.6 KiB
C#
Raw Normal View History

2013-03-07 06:34:00 +01:00
using MediaBrowser.Common.Events;
using MediaBrowser.Model.Tasks;
using System;
2013-02-23 08:57:11 +01:00
using System.Collections.Generic;
2013-03-07 06:34:00 +01:00
using System.Threading.Tasks;
2013-02-23 08:57:11 +01:00
namespace MediaBrowser.Common.ScheduledTasks
{
public interface ITaskManager : IDisposable
{
/// <summary>
/// Gets the list of Scheduled Tasks
/// </summary>
/// <value>The scheduled tasks.</value>
IScheduledTaskWorker[] ScheduledTasks { get; }
2013-02-23 08:57:11 +01:00
/// <summary>
/// Cancels if running and queue.
/// </summary>
/// <typeparam name="T"></typeparam>
void CancelIfRunningAndQueue<T>()
where T : IScheduledTask;
2013-09-23 20:53:06 +02:00
/// <summary>
/// Cancels if running.
/// </summary>
/// <typeparam name="T"></typeparam>
void CancelIfRunning<T>()
where T : IScheduledTask;
2013-02-23 08:57:11 +01:00
/// <summary>
/// Queues the scheduled task.
/// </summary>
/// <typeparam name="T"></typeparam>
void QueueScheduledTask<T>()
where T : IScheduledTask;
/// <summary>
/// Queues the scheduled task.
/// </summary>
/// <param name="task">The task.</param>
void QueueScheduledTask(IScheduledTask task);
/// <summary>
/// Adds the tasks.
/// </summary>
/// <param name="tasks">The tasks.</param>
void AddTasks(IEnumerable<IScheduledTask> tasks);
2013-03-07 06:34:00 +01:00
void Cancel(IScheduledTaskWorker task);
Task Execute(IScheduledTaskWorker task);
event EventHandler<EventArgs> TaskExecuting;
event EventHandler<GenericEventArgs<TaskResult>> TaskCompleted;
2013-02-23 08:57:11 +01:00
}
}