Define the executable component behaviour.
E.g., the behaviour of an algorithm inheriting from this.
Source code in mkdocs/lakehouse_engine/packages/core/executable.py
| @abstractmethod
def execute(self) -> Optional[Any]:
"""Define the executable component behaviour.
E.g., the behaviour of an algorithm inheriting from this.
"""
pass
|