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
IFluidDataStoreContext specifically is interface for internal communication between data store runtime and container runtime.
Ideally it should not be even exposed from IFluidDataStoreRuntime interface (to begin with).
The only thing that DataObject cares about is context.createProps (deprecated) and context.containerRuntime (ideally not exposed directly, but rather as a curated list of functionality that objects built on top of data store runtime have to have access).
exportabstractclassPureDataObject<OextendsIFluidObject=object,S=undefined,EextendsIEvent=IEvent>extendsEventForwarder<E>implementsIFluidLoadable,IFluidRouter,IProvideFluidHandle,IFluidObject{
...
/** * This context is used to talk up to the ContainerRuntime */protectedreadonlycontext: IFluidDataStoreContext;
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!
IFluidDataStoreContext specifically is interface for internal communication between data store runtime and container runtime.
Ideally it should not be even exposed from IFluidDataStoreRuntime interface (to begin with).
The only thing that DataObject cares about is context.createProps (deprecated) and context.containerRuntime (ideally not exposed directly, but rather as a curated list of functionality that objects built on top of data store runtime have to have access).
The text was updated successfully, but these errors were encountered: