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
As designed, the Context current has no concept of ownership for components.
We want components to be able to do a few different things, including initialize, in the right order and access data containers from Context. Right now the ergonomics of this is not great, i.e. it involves having to call context.get_data_container::<PluginType>(), and it would be nice to figure out a better way to do this.
The text was updated successfully, but these errors were encountered:
As designed, the
Context
current has no concept of ownership for components.We want components to be able to do a few different things, including initialize, in the right order and access data containers from
Context
. Right now the ergonomics of this is not great, i.e. it involves having to callcontext.get_data_container::<PluginType>()
, and it would be nice to figure out a better way to do this.The text was updated successfully, but these errors were encountered: