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
IContainerRuntime represents "container level" API to some layers in the system (like request handler).
There is a lot of functionality provided by this interface, yet usage is tiny and some things are not used.
One of the reasons for that - we expose ContainerRuntime - particular implementation of that inteface.
The ideal workflow is for ContainerRuntime.load() to
return IContainerRuntime, not ContainerRuntime
Abstract it away behind factory function, such that there is little knowledge of that implementation outside ContainerRuntime / DataStoreContext layers.
That will allow us to better understand all the functionality that needs to be on that interface (might need to add), as well as functionality that we can remove from it.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has had no activity for 180 days. It will be closed if no further activity occurs within 8 days of this comment. Thank you for your contributions to Fluid Framework!
This issue has been automatically marked as stale because it has had no activity for 180 days. It will be closed if no further activity occurs within 8 days of this comment. Thank you for your contributions to Fluid Framework!
IContainerRuntime represents "container level" API to some layers in the system (like request handler).
There is a lot of functionality provided by this interface, yet usage is tiny and some things are not used.
One of the reasons for that - we expose ContainerRuntime - particular implementation of that inteface.
The ideal workflow is for ContainerRuntime.load() to
That will allow us to better understand all the functionality that needs to be on that interface (might need to add), as well as functionality that we can remove from it.
The text was updated successfully, but these errors were encountered: