Skip to content

API Reference

types

Library's public types

StageClassOrInstance module-attribute

StageClassOrInstance = StageInstance | type[StageInstance]

Stage class or object

StageCollection module-attribute

StageCollection = tuple[StageClassOrInstance, ...]

Collection of Stage classes or objects

StageInstance module-attribute

StageInstance = StageCallable

Stage object

StageInstanceCollection module-attribute

StageInstanceCollection = tuple[StageInstance, ...]

Collection of Stage objects

T_in module-attribute

T_in = TypeVar('T_in', default=Any, infer_variance=True)

Input data type for pipeline flow (payload's value type)

T_out module-attribute

T_out = TypeVar('T_out', default=T_in, infer_variance=True)

Output data type for pipeline flow (result's value type)