setAllowCircularReferences abstract method
Allows or disallows circular references between pods.
When enabled, the factory can resolve circular dependencies using advanced techniques. When disabled, circular dependencies will cause an exception.
Usage Example:
factory.setAllowCircularReferences(false); // Strict mode - no circular deps
@param value true to allow circular references, false to disallow
Implementation
void setAllowCircularReferences(bool value);