TaskProcessingJobResult Enumeration |
Indicates how a task was or should be left.
Namespace:
MFiles.VAF.AppTasks
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic enum TaskProcessingJobResult
Public Enumeration TaskProcessingJobResult
public enum class TaskProcessingJobResult
Members
| Member name | Value | Description |
---|
| Undefined | 0 |
No defined behavior.
|
| Abort | 1 |
Indicates the task should not be updated further, so it automatically gets
restored to the MFTaskStateWaiting state.
|
| Fatal | 2 |
Indicates the task should be set to MFTaskStateFailed,
and MAY NOT be re-queued.
|
| Fail | 3 |
Indicates the task should be set to MFTaskStateFailed,
but MAY be re-queued.
|
| Requeue | 4 |
Indicates the task should be set to MFTaskStateFailed,
and MUST be re-queued.
|
| Retry | 5 |
Indicates the task may be reprocessed immediately, and left in the
MFTaskStateInProgress.
|
| Cancel | 6 |
Indicates the task should be marked canceled in the vault, and not processed any further.
|
| Complete | 7 |
Indicates the task my be set to MFTaskStateCompleted.
|
See Also