2018-12-27 16:27:57 -07:00
|
|
|
namespace MediaBrowser.Model.Tasks
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// Enum TaskCompletionStatus.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public enum TaskCompletionStatus
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// The completed.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
Completed,
|
|
|
|
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// The failed.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
Failed,
|
|
|
|
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// Manually cancelled by the user.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
Cancelled,
|
|
|
|
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// Aborted due to a system failure or shutdown.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
Aborted
|
|
|
|
}
|
|
|
|
}
|