Files
Umbraco-CMS/src/Umbraco.Web/Scheduling/BackgroundTaskRunnerOptions.cs

44 lines
1.5 KiB
C#
Raw Normal View History

namespace Umbraco.Web.Scheduling
{
2015-02-06 16:10:34 +01:00
/// <summary>
/// Provides options to the <see cref="BackgroundTaskRunner{T}"/> class.
/// </summary>
internal class BackgroundTaskRunnerOptions
{
//TODO: Could add options for using a stack vs queue if required
2015-02-06 16:10:34 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="BackgroundTaskRunnerOptions"/> class.
/// </summary>
public BackgroundTaskRunnerOptions()
{
2015-02-06 16:10:34 +01:00
LongRunning = false;
KeepAlive = false;
AutoStart = false;
}
2015-02-06 16:10:34 +01:00
/// <summary>
/// Gets or sets a value indicating whether the running task should be a long-running,
/// coarse grained operation.
/// </summary>
public bool LongRunning { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the running task should block and wait
/// on the queue, or end, when the queue is empty.
/// </summary>
public bool KeepAlive { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the running task should start immediately
/// or only once a task has been added to the queue.
/// </summary>
public bool AutoStart { get; set; }
/// <summary>
2015-02-06 16:10:34 +01:00
/// Gets or setes a value indicating whether the running task should be preserved
/// once completed, or reset to null. For unit tests.
/// </summary>
2015-02-06 16:10:34 +01:00
public bool PreserveRunningTask { get; set; }
}
}