Table of Contents

Delegate PipelineErrorHandler<T>

Namespace
Pipelinez.Core.ErrorHandling
Assembly
Pipelinez.dll

Represents asynchronous terminal fault policy logic for a faulted pipeline record.

public delegate Task<PipelineErrorAction> PipelineErrorHandler<T>(PipelineErrorContext<T> context) where T : PipelineRecord

Parameters

context PipelineErrorContext<T>

The fault context passed to the handler.

Returns

Task<PipelineErrorAction>

The error action the pipeline should take.

Type Parameters

T

The pipeline record type being handled.