Enum PipelineErrorAction
- Namespace
- Pipelinez.Core.ErrorHandling
- Assembly
- Pipelinez.dll
Describes the terminal action a pipeline should take after retries are exhausted for a faulted record.
public enum PipelineErrorAction
Fields
DeadLetter = 3Dead-letter the record and continue processing when dead-lettering succeeds.
Rethrow = 2Rethrow the fault and fault the pipeline.
SkipRecord = 1Skip the faulted record and continue processing later records.
StopPipeline = 0Fault the pipeline and stop processing.