Enum TaskExecution
- Namespace
- XENBIT.ResQueServe.Abstractions.DataStructures
- Assembly
- RQS.Abstractions.dll
Defines the possible execution modes for a task.
public enum TaskExecution
- Extension Methods
Fields
AutomaticAlways = 3Indicates the task should always be automatically executed.
AutomaticOnce = 2Indicates the task should be automatically executed once.
AutomaticOnceThenManualMultiple = 4Indicates the task should be automatically executed once and can be manually executed multiple times.
ManualMultiple = 1Indicates the task can be manually executed multiple times.
ManualOnce = 0Indicates the task should be manually executed once.