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
What if we didn't pre-fetch all details, only lazy loaded them when needed?
The host doesn't need to read that property until it's going to show the details
We probably wouldn't do it immediately as needed, but like, 25 items at a time
The extension doesn't need to generate that property on creation. It can probably have an LazyDetails( Func<void, IDetails>) : IDetails that only constructs the data when actually read
Similar to the above, but with context items
EVEN MORE SO: What if we just marked a page as Initialized after the first like, 25 items? so that it's usable even as we're still fetching.
The text was updated successfully, but these errors were encountered:
LazyDetails( Func<void, IDetails>) : IDetails
that only constructs the data when actually readInitialized
after the first like, 25 items? so that it's usable even as we're still fetching.The text was updated successfully, but these errors were encountered: