Home > @idealeap/pipeline > PipelineContext
PipelineContext interface
Represents the context in which a pipeline operates.
Signature:
typescript
export interface PipelineContextexport interface PipelineContextProperties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| abortController | AbortController | An abort controller to signal and handle aborting pipeline operations. | |
| emitter | EventEmitter | An event emitter for the pipeline to emit and listen to custom events. | |
| stepParams | Record<string, any> | A record of parameters for the steps in the pipeline. | |
| stepResults | Record<string, any> | A record of results from previously executed steps in the pipeline. |