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
Ideally the lambda passed to a driver in the initializing argument should not be called when caching is kicking in. But then we need a new event such that caching can happen BEFORE "displaying", which we don't have. And maybe two more events: one to initialize, such that "displaying" events know that the object has the properties it requires, and one before that such that "caching" can prevent initialize to happen.
Another options, which would not require new events or breaking changes is that after the IShapeDisplayEvents.DisplayingAsync invocations, we check if the ChildContent has been set and skip other DisplayingAsync event (called by the drivers and shape descriptors). Processing would then be useless.
The text was updated successfully, but these errors were encountered:
We triaged this issue and set the milestone according to the priority we think is appropriate (see the docs on how we triage and prioritize issues).
This indicates when the core team may start working on it. However, if you'd like to contribute, we'd warmly welcome you to do that anytime. See our guide on contributions here.
c.f. #16677
Ideally the lambda passed to a driver in the initializing argument should not be called when caching is kicking in. But then we need a new event such that caching can happen BEFORE "displaying", which we don't have. And maybe two more events: one to initialize, such that "displaying" events know that the object has the properties it requires, and one before that such that "caching" can prevent initialize to happen.
Another options, which would not require new events or breaking changes is that after the
IShapeDisplayEvents.DisplayingAsync
invocations, we check if theChildContent
has been set and skip otherDisplayingAsync
event (called by the drivers and shape descriptors).Processing
would then be useless.The text was updated successfully, but these errors were encountered: