Instance Registry
Module: ppc_robot_lib.utils.registry
- class AbstractRegistry[source]
Base class for instance registries. This class stores instances in a dictionary under given keys. When an instance is first requested, it will be created using the
_create()
method and stored in the internal dictionary with the given key.On subsequent requests with the same key, the same instance will be returned.