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
This might be a really hard one to solve, but the idea is simple: lazy services are not necessarily the front-facing services inside your app.
Let's say you have a class:
class MyService
{
publicfunction__construct(SomethingSlow$iWantThisToBeLazy) {}
}
This kind of container currently only allows MyService to be fetched lazily, but doesn't allow the internal dependency to SomethingSlow to be replaced with a lazy instance.
This problem may not be solvable by the lib as-is, but it is a good scope for research, and it may spawn into further development of the container-interop standard.
The text was updated successfully, but these errors were encountered:
This might be a really hard one to solve, but the idea is simple: lazy services are not necessarily the front-facing services inside your app.
Let's say you have a class:
This kind of container currently only allows
MyService
to be fetched lazily, but doesn't allow the internal dependency toSomethingSlow
to be replaced with a lazy instance.This problem may not be solvable by the lib as-is, but it is a good scope for research, and it may spawn into further development of the container-interop standard.
The text was updated successfully, but these errors were encountered: