Class BatchTaskState
Namespace: SuperOffice.Data
Assembly: SoCore.dll
Syntax
public sealed class BatchTaskState : Enum
Fields
All
99999: Special type.
Declaration
public const BatchTaskState All
Field Value
Type | Description |
---|---|
BatchTaskState |
Aquired
2: The task has been aquired by an instance that wants to execute the task, but has not been started.
Declaration
public const BatchTaskState Aquired
Field Value
Type | Description |
---|---|
BatchTaskState |
Failed
5: Executing the task has halted and the task failed.
Declaration
public const BatchTaskState Failed
Field Value
Type | Description |
---|---|
BatchTaskState |
New
1: The task is new, but not assigned or run by any party.
Declaration
public const BatchTaskState New
Field Value
Type | Description |
---|---|
BatchTaskState |
Started
3: The task is executing.
Declaration
public const BatchTaskState Started
Field Value
Type | Description |
---|---|
BatchTaskState |
Succeeded
4: Executing the task has completed successfully.
Declaration
public const BatchTaskState Succeeded
Field Value
Type | Description |
---|---|
BatchTaskState |
SucceededManualCleanup
6: Executing the task has completed successfully, and related data will be cleaned up by the responsible code.
Declaration
public const BatchTaskState SucceededManualCleanup
Field Value
Type | Description |
---|---|
BatchTaskState |
Unknown
0: Unknown state of the task.
Declaration
public const BatchTaskState Unknown
Field Value
Type | Description |
---|---|
BatchTaskState |
value__
Declaration
public int value__
Field Value
Type | Description |
---|---|
Int32 |
Extension Methods
EnumUtil.MapEnums<From, To>(From)