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
contextPipelineErrorContext<T>The fault context passed to the handler.
Returns
- Task<PipelineErrorAction>
The error action the pipeline should take.
Type Parameters
TThe pipeline record type being handled.