variable

Variable is a concept to share state across operators that are in the same ancestoral chain. The class Variable provides a way to store a variabe that can be a user defined or a fundamental python type. The design of the variable class follows the nullable object design pattern.

class tasrif.processing_pipeline.variable.Variable(_value=None)

Class to get and set a value implementing the nullable object design pattern.

__init__(_value=None)

Initialize self. See help(type(self)) for accurate signature.