astromodule.pipeline.PipelineStage#
- class PipelineStage[source]#
Base class for all pipeline stages
- Attributes:
- storage: PipelineStorage
The pipeline storage. All resources of the pipeline are shared between stages using this object. The
Pipelineclass creates this object during instantiation
See also
Methods
get_data(key)Retrieve shared data identified by a
keylog(message)run()All concrete class of
PipelineStagemust implement this method.set_data(key, value)Stores shared data
valueidentified by akeyAttributes
A list of all resorces produced by this pipeline stage.
A list of all resorces required by this pipeline stage.
- classmethod __new__(*args, **kwargs)#