Enum ErrorHandlingAction
- Namespace
- DotCompute.Abstractions.Pipelines.Enums
- Assembly
- DotCompute.Abstractions.dll
Defines the actions to take when an error occurs during pipeline execution
public enum ErrorHandlingAction
Fields
Abort = 11Abort the entire pipeline execution immediately
Continue = 1Continue pipeline execution, skipping the failed stage
Failed = 12The operation failed
Fallback = 3Use a fallback implementation
Ignored = 10Ignore the error and proceed without any action
LogAndContinue = 4Log the error and continue
None = -1No action specified
Pause = 5Pause pipeline execution for manual intervention
Restart = 6Restart the entire pipeline
Retry = 2Retry the failed stage
Rollback = 9Rollback to a previous checkpoint
Skip = 8Skip this stage and continue with the next
Stop = 0Stop pipeline execution and propagate the error
UseDefault = 7Use default values and continue