Table of Contents

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 = 11

Abort the entire pipeline execution immediately

Continue = 1

Continue pipeline execution, skipping the failed stage

Failed = 12

The operation failed

Fallback = 3

Use a fallback implementation

Ignored = 10

Ignore the error and proceed without any action

LogAndContinue = 4

Log the error and continue

None = -1

No action specified

Pause = 5

Pause pipeline execution for manual intervention

Restart = 6

Restart the entire pipeline

Retry = 2

Retry the failed stage

Rollback = 9

Rollback to a previous checkpoint

Skip = 8

Skip this stage and continue with the next

Stop = 0

Stop pipeline execution and propagate the error

UseDefault = 7

Use default values and continue