validate_actions.globals.process_stage¶
Defines basic interface of pipeline stages.
Classes
|
Interface for processing stages in the validation pipeline. |
- class validate_actions.globals.process_stage.ProcessStage(problems)[source]¶
Bases:
ABC,Generic[TInput,TOutput]Interface for processing stages in the validation pipeline.
All processing stages are instantiated with a Problems collection and provide a single method that takes one generic input and returns one generic output.
- Parameters:
problems (Problems)