jellyfin/MediaBrowser.Model/Tasks/ITaskManager.cs

83 lines
2.7 KiB
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Jellyfin.Data.Events;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Tasks
{
public interface ITaskManager : IDisposable
{
2023-02-15 17:41:28 -05:00
event EventHandler<GenericEventArgs<IScheduledTaskWorker>>? TaskExecuting;
2023-02-15 17:41:28 -05:00
event EventHandler<TaskCompletionEventArgs>? TaskCompleted;
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets the list of Scheduled Tasks.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The scheduled tasks.</value>
IScheduledTaskWorker[] ScheduledTasks { get; }
/// <summary>
/// Cancels if running and queue.
/// </summary>
/// <typeparam name="T">An implementation of <see cref="IScheduledTask" />.</typeparam>
2018-12-27 18:27:57 -05:00
/// <param name="options">Task options.</param>
void CancelIfRunningAndQueue<T>(TaskOptions options)
where T : IScheduledTask;
/// <summary>
/// Cancels if running and queue.
/// </summary>
/// <typeparam name="T">An implementation of <see cref="IScheduledTask" />.</typeparam>
2018-12-27 18:27:57 -05:00
void CancelIfRunningAndQueue<T>()
where T : IScheduledTask;
/// <summary>
/// Cancels if running.
/// </summary>
/// <typeparam name="T">An implementation of <see cref="IScheduledTask" />.</typeparam>
2018-12-27 18:27:57 -05:00
void CancelIfRunning<T>()
where T : IScheduledTask;
/// <summary>
/// Queues the scheduled task.
/// </summary>
/// <typeparam name="T">An implementation of <see cref="IScheduledTask" />.</typeparam>
2018-12-27 18:27:57 -05:00
/// <param name="options">Task options.</param>
void QueueScheduledTask<T>(TaskOptions options)
where T : IScheduledTask;
/// <summary>
/// Queues the scheduled task.
/// </summary>
/// <typeparam name="T">An implementation of <see cref="IScheduledTask" />.</typeparam>
2018-12-27 18:27:57 -05:00
void QueueScheduledTask<T>()
where T : IScheduledTask;
void QueueIfNotRunning<T>()
where T : IScheduledTask;
2019-01-07 18:27:46 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Queues the scheduled task.
/// </summary>
/// <param name="task">The <see cref="IScheduledTask" /> to queue.</param>
/// <param name="options">The <see cref="TaskOptions" /> to use.</param>
2018-12-27 18:27:57 -05:00
void QueueScheduledTask(IScheduledTask task, TaskOptions options);
/// <summary>
/// Adds the tasks.
/// </summary>
/// <param name="tasks">The tasks.</param>
void AddTasks(IEnumerable<IScheduledTask> tasks);
void Cancel(IScheduledTaskWorker task);
2018-12-27 18:27:57 -05:00
Task Execute(IScheduledTaskWorker task, TaskOptions options);
void Execute<T>()
where T : IScheduledTask;
}
}