Components

All logical blocks of programs are represented as components, each of which inherits from the base class Component. This base class encompasses essential methods and attributes required for execution, including:

  • run: Execute component. This method should be called when program executed.

  • __or__: Bound components to ExecutionSchema.

  • set_name: Set indentification name. Usefull for debugging and logging.

For parameters and more details about Component, see:

Last updated