Table of Contents

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

Dead-letter the record and continue processing when dead-lettering succeeds.

Rethrow = 2

Rethrow the fault and fault the pipeline.

SkipRecord = 1

Skip the faulted record and continue processing later records.

StopPipeline = 0

Fault the pipeline and stop processing.