The SuperlinkedRegistry provides centralized management for Superlinked framework executors, enabling registration and retrieval of executor instances.

Constructor

SuperlinkedRegistry()

Static Methods

get_executors()

get_executors() -> frozenset[Executor]
Retrieve all registered executors from the registry. Returns: A frozen set containing all registered executor instances.

register()

register(*items: Executor) -> None
Register one or more executor instances with the registry.
*items
Executor
required
Variable number of executor instances to register with the framework.
Returns: None