You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/Web/Documentation/content/main/1-essentials/01-container.md
+19
Original file line number
Diff line number
Diff line change
@@ -379,3 +379,22 @@ class MyCommand
379
379
```
380
380
381
381
For these edge cases, it's nicer to make the trait self-contained without having to rely on constructor injection. That's why injected properties are supported.
382
+
383
+
## Lazy loading
384
+
The container supports lazy loading of dependencies using the `#[Lazy]` attribute. Using this attribute on a property (that has `#[Inject]`) or a constructor parameter
385
+
will allow the container to instead inject a lazy proxy.
386
+
Since lazy proxies are transparent to the consumer you do not need to change anything else in your code.
387
+
The primary use case for this are heavy dependencies that may or may not be used.
0 commit comments