@fluidframework/aqueduct 2.0.0-rc.1.0.6 → 2.0.0-rc.2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aqueduct-alpha.d.ts +116 -48
- package/dist/aqueduct-beta.d.ts +10 -0
- package/dist/aqueduct-public.d.ts +10 -0
- package/dist/aqueduct-untrimmed.d.ts +116 -48
- package/dist/container-runtime-factories/baseContainerRuntimeFactory.d.ts +39 -23
- package/dist/container-runtime-factories/baseContainerRuntimeFactory.d.ts.map +1 -1
- package/dist/container-runtime-factories/baseContainerRuntimeFactory.js +3 -8
- package/dist/container-runtime-factories/baseContainerRuntimeFactory.js.map +1 -1
- package/dist/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.d.ts +37 -25
- package/dist/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.d.ts.map +1 -1
- package/dist/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.js +4 -13
- package/dist/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.js.map +1 -1
- package/dist/container-runtime-factories/index.d.ts +2 -2
- package/dist/container-runtime-factories/index.d.ts.map +1 -1
- package/dist/container-runtime-factories/index.js +4 -4
- package/dist/container-runtime-factories/index.js.map +1 -1
- package/dist/data-object-factories/dataObjectFactory.d.ts +6 -6
- package/dist/data-object-factories/dataObjectFactory.d.ts.map +1 -1
- package/dist/data-object-factories/dataObjectFactory.js +4 -4
- package/dist/data-object-factories/dataObjectFactory.js.map +1 -1
- package/dist/data-object-factories/index.d.ts +2 -2
- package/dist/data-object-factories/index.d.ts.map +1 -1
- package/dist/data-object-factories/index.js +4 -4
- package/dist/data-object-factories/index.js.map +1 -1
- package/dist/data-object-factories/pureDataObjectFactory.d.ts +44 -14
- package/dist/data-object-factories/pureDataObjectFactory.d.ts.map +1 -1
- package/dist/data-object-factories/pureDataObjectFactory.js +56 -14
- package/dist/data-object-factories/pureDataObjectFactory.js.map +1 -1
- package/dist/data-objects/dataObject.d.ts +3 -3
- package/dist/data-objects/dataObject.d.ts.map +1 -1
- package/dist/data-objects/dataObject.js +8 -8
- package/dist/data-objects/dataObject.js.map +1 -1
- package/dist/data-objects/index.d.ts +3 -3
- package/dist/data-objects/index.d.ts.map +1 -1
- package/dist/data-objects/index.js +4 -4
- package/dist/data-objects/index.js.map +1 -1
- package/dist/data-objects/pureDataObject.d.ts +12 -6
- package/dist/data-objects/pureDataObject.d.ts.map +1 -1
- package/dist/data-objects/pureDataObject.js +10 -0
- package/dist/data-objects/pureDataObject.js.map +1 -1
- package/dist/data-objects/types.d.ts +7 -7
- package/dist/data-objects/types.d.ts.map +1 -1
- package/dist/data-objects/types.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/package.json +3 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/{aqueduct-alpha.d.mts → aqueduct-alpha.d.ts} +131 -48
- package/lib/{aqueduct-beta.d.mts → aqueduct-beta.d.ts} +25 -0
- package/lib/{aqueduct-public.d.mts → aqueduct-public.d.ts} +25 -0
- package/lib/{aqueduct-untrimmed.d.mts → aqueduct-untrimmed.d.ts} +131 -48
- package/lib/container-runtime-factories/{baseContainerRuntimeFactory.d.mts → baseContainerRuntimeFactory.d.ts} +40 -24
- package/lib/container-runtime-factories/baseContainerRuntimeFactory.d.ts.map +1 -0
- package/lib/container-runtime-factories/{baseContainerRuntimeFactory.mjs → baseContainerRuntimeFactory.js} +6 -10
- package/lib/container-runtime-factories/baseContainerRuntimeFactory.js.map +1 -0
- package/lib/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.d.ts +57 -0
- package/lib/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.d.ts.map +1 -0
- package/lib/container-runtime-factories/{containerRuntimeFactoryWithDefaultDataStore.mjs → containerRuntimeFactoryWithDefaultDataStore.js} +4 -13
- package/lib/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.js.map +1 -0
- package/lib/container-runtime-factories/index.d.ts +7 -0
- package/lib/container-runtime-factories/index.d.ts.map +1 -0
- package/lib/container-runtime-factories/index.js +7 -0
- package/lib/container-runtime-factories/index.js.map +1 -0
- package/lib/data-object-factories/dataObjectFactory.d.ts +23 -0
- package/lib/data-object-factories/dataObjectFactory.d.ts.map +1 -0
- package/lib/data-object-factories/{dataObjectFactory.mjs → dataObjectFactory.js} +4 -4
- package/lib/data-object-factories/dataObjectFactory.js.map +1 -0
- package/lib/data-object-factories/index.d.ts +7 -0
- package/lib/data-object-factories/index.d.ts.map +1 -0
- package/lib/data-object-factories/index.js +7 -0
- package/lib/data-object-factories/index.js.map +1 -0
- package/lib/data-object-factories/{pureDataObjectFactory.d.mts → pureDataObjectFactory.d.ts} +45 -15
- package/lib/data-object-factories/pureDataObjectFactory.d.ts.map +1 -0
- package/lib/data-object-factories/{pureDataObjectFactory.mjs → pureDataObjectFactory.js} +57 -15
- package/lib/data-object-factories/pureDataObjectFactory.js.map +1 -0
- package/lib/data-objects/{dataObject.d.mts → dataObject.d.ts} +4 -4
- package/lib/data-objects/dataObject.d.ts.map +1 -0
- package/lib/data-objects/{dataObject.mjs → dataObject.js} +8 -8
- package/lib/data-objects/dataObject.js.map +1 -0
- package/lib/data-objects/index.d.ts +8 -0
- package/lib/data-objects/index.d.ts.map +1 -0
- package/lib/data-objects/index.js +7 -0
- package/lib/data-objects/index.js.map +1 -0
- package/lib/data-objects/{pureDataObject.d.mts → pureDataObject.d.ts} +13 -7
- package/lib/data-objects/pureDataObject.d.ts.map +1 -0
- package/lib/data-objects/{pureDataObject.mjs → pureDataObject.js} +11 -1
- package/lib/data-objects/pureDataObject.js.map +1 -0
- package/lib/data-objects/{types.d.mts → types.d.ts} +8 -8
- package/lib/data-objects/types.d.ts.map +1 -0
- package/lib/data-objects/{types.mjs → types.js} +1 -1
- package/lib/data-objects/types.js.map +1 -0
- package/lib/index.d.ts +22 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +22 -0
- package/lib/index.js.map +1 -0
- package/lib/test/aqueduct.spec.js +8 -0
- package/lib/test/aqueduct.spec.js.map +1 -0
- package/lib/test/tsconfig.tsbuildinfo +1 -0
- package/lib/test/types/validateAqueductPrevious.generated.js +24 -0
- package/lib/test/types/validateAqueductPrevious.generated.js.map +1 -0
- package/package.json +54 -54
- package/lib/container-runtime-factories/baseContainerRuntimeFactory.d.mts.map +0 -1
- package/lib/container-runtime-factories/baseContainerRuntimeFactory.mjs.map +0 -1
- package/lib/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.d.mts +0 -45
- package/lib/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.d.mts.map +0 -1
- package/lib/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.mjs.map +0 -1
- package/lib/container-runtime-factories/index.d.mts +0 -7
- package/lib/container-runtime-factories/index.d.mts.map +0 -1
- package/lib/container-runtime-factories/index.mjs +0 -7
- package/lib/container-runtime-factories/index.mjs.map +0 -1
- package/lib/data-object-factories/dataObjectFactory.d.mts +0 -23
- package/lib/data-object-factories/dataObjectFactory.d.mts.map +0 -1
- package/lib/data-object-factories/dataObjectFactory.mjs.map +0 -1
- package/lib/data-object-factories/index.d.mts +0 -7
- package/lib/data-object-factories/index.d.mts.map +0 -1
- package/lib/data-object-factories/index.mjs +0 -7
- package/lib/data-object-factories/index.mjs.map +0 -1
- package/lib/data-object-factories/pureDataObjectFactory.d.mts.map +0 -1
- package/lib/data-object-factories/pureDataObjectFactory.mjs.map +0 -1
- package/lib/data-objects/dataObject.d.mts.map +0 -1
- package/lib/data-objects/dataObject.mjs.map +0 -1
- package/lib/data-objects/index.d.mts +0 -8
- package/lib/data-objects/index.d.mts.map +0 -1
- package/lib/data-objects/index.mjs +0 -7
- package/lib/data-objects/index.mjs.map +0 -1
- package/lib/data-objects/pureDataObject.d.mts.map +0 -1
- package/lib/data-objects/pureDataObject.mjs.map +0 -1
- package/lib/data-objects/types.d.mts.map +0 -1
- package/lib/data-objects/types.mjs.map +0 -1
- package/lib/index.d.mts +0 -8
- package/lib/index.d.mts.map +0 -1
- package/lib/index.mjs +0 -8
- package/lib/index.mjs.map +0 -1
package/dist/aqueduct-alpha.d.ts
CHANGED
|
@@ -23,7 +23,9 @@ import { IContainerContext } from '@fluidframework/container-definitions';
|
|
|
23
23
|
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions';
|
|
24
24
|
import { IContainerRuntimeBase } from '@fluidframework/runtime-definitions';
|
|
25
25
|
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime';
|
|
26
|
+
import { IDataStore } from '@fluidframework/runtime-definitions';
|
|
26
27
|
import { IEvent } from '@fluidframework/core-interfaces';
|
|
28
|
+
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions';
|
|
27
29
|
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
28
30
|
import { IFluidDataStoreContextDetached } from '@fluidframework/runtime-definitions';
|
|
29
31
|
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
@@ -50,6 +52,9 @@ import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
|
50
52
|
* @alpha
|
|
51
53
|
*/
|
|
52
54
|
export declare class BaseContainerRuntimeFactory extends RuntimeFactoryHelper implements IProvideFluidDataStoreRegistry {
|
|
55
|
+
/**
|
|
56
|
+
* {@inheritDoc @fluidframework/runtime-definitions#IProvideFluidDataStoreRegistry.IFluidDataStoreRegistry}
|
|
57
|
+
*/
|
|
53
58
|
get IFluidDataStoreRegistry(): IFluidDataStoreRegistry;
|
|
54
59
|
private readonly registry;
|
|
55
60
|
private readonly registryEntries;
|
|
@@ -57,22 +62,7 @@ export declare class BaseContainerRuntimeFactory extends RuntimeFactoryHelper im
|
|
|
57
62
|
private readonly runtimeOptions?;
|
|
58
63
|
private readonly requestHandlers;
|
|
59
64
|
private readonly provideEntryPoint;
|
|
60
|
-
|
|
61
|
-
* @param registryEntries - The data store registry for containers produced
|
|
62
|
-
* @param dependencyContainer - deprecated, will be removed in a future release
|
|
63
|
-
* @param requestHandlers - Request handlers for containers produced
|
|
64
|
-
* @param runtimeOptions - The runtime options passed to the ContainerRuntime when instantiating it
|
|
65
|
-
* @param provideEntryPoint - Function that will initialize the entryPoint of the ContainerRuntime instances
|
|
66
|
-
* created with this factory
|
|
67
|
-
*/
|
|
68
|
-
constructor(props: {
|
|
69
|
-
registryEntries: NamedFluidDataStoreRegistryEntries;
|
|
70
|
-
dependencyContainer?: IFluidDependencySynthesizer;
|
|
71
|
-
/** @deprecated Will be removed once Loader LTS version is "2.0.0-internal.7.0.0". Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md */
|
|
72
|
-
requestHandlers?: RuntimeRequestHandler[];
|
|
73
|
-
runtimeOptions?: IContainerRuntimeOptions;
|
|
74
|
-
provideEntryPoint: (runtime: IContainerRuntime) => Promise<FluidObject>;
|
|
75
|
-
});
|
|
65
|
+
constructor(props: BaseContainerRuntimeFactoryProps);
|
|
76
66
|
instantiateFirstTime(runtime: ContainerRuntime): Promise<void>;
|
|
77
67
|
instantiateFromExisting(runtime: ContainerRuntime): Promise<void>;
|
|
78
68
|
preInitialize(context: IContainerContext, existing: boolean): Promise<ContainerRuntime>;
|
|
@@ -90,6 +80,35 @@ export declare class BaseContainerRuntimeFactory extends RuntimeFactoryHelper im
|
|
|
90
80
|
protected containerHasInitialized(runtime: IContainerRuntime): Promise<void>;
|
|
91
81
|
}
|
|
92
82
|
|
|
83
|
+
/**
|
|
84
|
+
* {@link BaseContainerRuntimeFactory} construction properties.
|
|
85
|
+
* @alpha
|
|
86
|
+
*/
|
|
87
|
+
export declare interface BaseContainerRuntimeFactoryProps {
|
|
88
|
+
/**
|
|
89
|
+
* The data store registry for containers produced.
|
|
90
|
+
*/
|
|
91
|
+
registryEntries: NamedFluidDataStoreRegistryEntries;
|
|
92
|
+
/**
|
|
93
|
+
* @deprecated Will be removed in a future release.
|
|
94
|
+
*/
|
|
95
|
+
dependencyContainer?: IFluidDependencySynthesizer;
|
|
96
|
+
/**
|
|
97
|
+
* Request handlers for containers produced.
|
|
98
|
+
* @deprecated Will be removed once Loader LTS version is "2.0.0-internal.7.0.0". Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md
|
|
99
|
+
*/
|
|
100
|
+
requestHandlers?: RuntimeRequestHandler[];
|
|
101
|
+
/**
|
|
102
|
+
* The runtime options passed to the ContainerRuntime when instantiating it
|
|
103
|
+
*/
|
|
104
|
+
runtimeOptions?: IContainerRuntimeOptions;
|
|
105
|
+
/**
|
|
106
|
+
* Function that will initialize the entryPoint of the ContainerRuntime instances
|
|
107
|
+
* created with this factory
|
|
108
|
+
*/
|
|
109
|
+
provideEntryPoint: (runtime: IContainerRuntime) => Promise<FluidObject>;
|
|
110
|
+
}
|
|
111
|
+
|
|
93
112
|
/**
|
|
94
113
|
* A ContainerRuntimeFactory that initializes Containers with a single default data store, which can be requested from
|
|
95
114
|
* the container with an empty URL.
|
|
@@ -100,30 +119,43 @@ export declare class BaseContainerRuntimeFactory extends RuntimeFactoryHelper im
|
|
|
100
119
|
export declare class ContainerRuntimeFactoryWithDefaultDataStore extends BaseContainerRuntimeFactory {
|
|
101
120
|
static readonly defaultDataStoreId = "default";
|
|
102
121
|
protected readonly defaultFactory: IFluidDataStoreFactory;
|
|
103
|
-
|
|
104
|
-
* Constructor
|
|
105
|
-
* @param defaultFactory -
|
|
106
|
-
* @param registryEntries -
|
|
107
|
-
* @param dependencyContainer - deprecated, will be removed in a future release
|
|
108
|
-
* @param requestHandlers -
|
|
109
|
-
* @param runtimeOptions -
|
|
110
|
-
* @param provideEntryPoint -
|
|
111
|
-
*/
|
|
112
|
-
constructor(props: {
|
|
113
|
-
defaultFactory: IFluidDataStoreFactory;
|
|
114
|
-
registryEntries: NamedFluidDataStoreRegistryEntries;
|
|
115
|
-
dependencyContainer?: IFluidDependencySynthesizer;
|
|
116
|
-
/** @deprecated Will be removed once Loader LTS version is "2.0.0-internal.7.0.0". Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md */
|
|
117
|
-
requestHandlers?: RuntimeRequestHandler[];
|
|
118
|
-
runtimeOptions?: IContainerRuntimeOptions;
|
|
119
|
-
provideEntryPoint?: (runtime: IContainerRuntime) => Promise<FluidObject>;
|
|
120
|
-
});
|
|
122
|
+
constructor(props: ContainerRuntimeFactoryWithDefaultDataStoreProps);
|
|
121
123
|
/**
|
|
122
124
|
* {@inheritDoc BaseContainerRuntimeFactory.containerInitializingFirstTime}
|
|
123
125
|
*/
|
|
124
126
|
protected containerInitializingFirstTime(runtime: IContainerRuntime): Promise<void>;
|
|
125
127
|
}
|
|
126
128
|
|
|
129
|
+
/**
|
|
130
|
+
* {@link ContainerRuntimeFactoryWithDefaultDataStore} construction properties.
|
|
131
|
+
* @alpha
|
|
132
|
+
*/
|
|
133
|
+
export declare interface ContainerRuntimeFactoryWithDefaultDataStoreProps {
|
|
134
|
+
defaultFactory: IFluidDataStoreFactory;
|
|
135
|
+
/**
|
|
136
|
+
* The data store registry for containers produced.
|
|
137
|
+
*/
|
|
138
|
+
registryEntries: NamedFluidDataStoreRegistryEntries;
|
|
139
|
+
/**
|
|
140
|
+
* @deprecated Will be removed in a future release.
|
|
141
|
+
*/
|
|
142
|
+
dependencyContainer?: IFluidDependencySynthesizer;
|
|
143
|
+
/**
|
|
144
|
+
* Request handlers for containers produced.
|
|
145
|
+
* @deprecated Will be removed once Loader LTS version is "2.0.0-internal.7.0.0". Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md
|
|
146
|
+
*/
|
|
147
|
+
requestHandlers?: RuntimeRequestHandler[];
|
|
148
|
+
/**
|
|
149
|
+
* The runtime options passed to the ContainerRuntime when instantiating it
|
|
150
|
+
*/
|
|
151
|
+
runtimeOptions?: IContainerRuntimeOptions;
|
|
152
|
+
/**
|
|
153
|
+
* Function that will initialize the entryPoint of the ContainerRuntime instances
|
|
154
|
+
* created with this factory
|
|
155
|
+
*/
|
|
156
|
+
provideEntryPoint?: (runtime: IContainerRuntime) => Promise<FluidObject>;
|
|
157
|
+
}
|
|
158
|
+
|
|
127
159
|
/**
|
|
128
160
|
* DataObject is a base data store that is primed with a root directory. It
|
|
129
161
|
* ensures that it is created and ready before you can access it.
|
|
@@ -165,7 +197,7 @@ export declare abstract class DataObject<I extends DataObjectTypes = DataObjectT
|
|
|
165
197
|
* @alpha
|
|
166
198
|
*/
|
|
167
199
|
export declare class DataObjectFactory<TObj extends DataObject<I>, I extends DataObjectTypes = DataObjectTypes> extends PureDataObjectFactory<TObj, I> {
|
|
168
|
-
constructor(type: string, ctor: new (props: IDataObjectProps<I>) => TObj, sharedObjects: readonly IChannelFactory[] | undefined, optionalProviders: FluidObjectSymbolProvider<I["OptionalProviders"]>, registryEntries?: NamedFluidDataStoreRegistryEntries, runtimeFactory?: typeof FluidDataStoreRuntime);
|
|
200
|
+
constructor(type: string, ctor: new (props: IDataObjectProps<I>) => TObj, sharedObjects: readonly IChannelFactory<IFluidLoadable>[] | undefined, optionalProviders: FluidObjectSymbolProvider<I["OptionalProviders"]>, registryEntries?: NamedFluidDataStoreRegistryEntries, runtimeFactory?: typeof FluidDataStoreRuntime);
|
|
169
201
|
}
|
|
170
202
|
|
|
171
203
|
/**
|
|
@@ -174,15 +206,15 @@ export declare class DataObjectFactory<TObj extends DataObject<I>, I extends Dat
|
|
|
174
206
|
*/
|
|
175
207
|
export declare interface DataObjectTypes {
|
|
176
208
|
/**
|
|
177
|
-
*
|
|
209
|
+
* Represents a type that will define optional providers that will be injected.
|
|
178
210
|
*/
|
|
179
211
|
OptionalProviders?: FluidObject;
|
|
180
212
|
/**
|
|
181
|
-
*
|
|
213
|
+
* The initial state type that the produced data object may take during creation.
|
|
182
214
|
*/
|
|
183
215
|
InitialState?: any;
|
|
184
216
|
/**
|
|
185
|
-
*
|
|
217
|
+
* Represents events that will be available in the EventForwarder.
|
|
186
218
|
*/
|
|
187
219
|
Events?: IEvent;
|
|
188
220
|
}
|
|
@@ -225,13 +257,19 @@ export declare abstract class PureDataObject<I extends DataObjectTypes = DataObj
|
|
|
225
257
|
protected initProps?: I["InitialState"];
|
|
226
258
|
protected initializeP: Promise<void> | undefined;
|
|
227
259
|
get id(): string;
|
|
260
|
+
/**
|
|
261
|
+
* {@inheritDoc @fluidframework/core-interfaces#IProvideFluidLoadable.IFluidLoadable}
|
|
262
|
+
*/
|
|
228
263
|
get IFluidLoadable(): this;
|
|
264
|
+
/**
|
|
265
|
+
* {@inheritDoc @fluidframework/core-interfaces#IProvideFluidHandle.IFluidHandle}
|
|
266
|
+
*/
|
|
229
267
|
get IFluidHandle(): IFluidHandle<this>;
|
|
230
268
|
/**
|
|
231
269
|
* Handle to a data store
|
|
232
270
|
*/
|
|
233
271
|
get handle(): IFluidHandle<this>;
|
|
234
|
-
static getDataObject(runtime: IFluidDataStoreRuntime): Promise<PureDataObject
|
|
272
|
+
static getDataObject(runtime: IFluidDataStoreRuntime): Promise<PureDataObject>;
|
|
235
273
|
constructor(props: IDataObjectProps<I>);
|
|
236
274
|
/**
|
|
237
275
|
* Return this object if someone requests it directly
|
|
@@ -291,14 +329,27 @@ export declare abstract class PureDataObject<I extends DataObjectTypes = DataObj
|
|
|
291
329
|
* @alpha
|
|
292
330
|
*/
|
|
293
331
|
export declare class PureDataObjectFactory<TObj extends PureDataObject<I>, I extends DataObjectTypes = DataObjectTypes> implements IFluidDataStoreFactory, Partial<IProvideFluidDataStoreRegistry> {
|
|
332
|
+
/**
|
|
333
|
+
* {@inheritDoc @fluidframework/runtime-definitions#IFluidDataStoreFactory."type"}
|
|
334
|
+
*/
|
|
294
335
|
readonly type: string;
|
|
295
336
|
private readonly ctor;
|
|
296
337
|
private readonly optionalProviders;
|
|
297
338
|
private readonly runtimeClass;
|
|
298
339
|
private readonly sharedObjectRegistry;
|
|
299
340
|
private readonly registry;
|
|
300
|
-
constructor(
|
|
341
|
+
constructor(
|
|
342
|
+
/**
|
|
343
|
+
* {@inheritDoc @fluidframework/runtime-definitions#IFluidDataStoreFactory."type"}
|
|
344
|
+
*/
|
|
345
|
+
type: string, ctor: new (props: IDataObjectProps<I>) => TObj, sharedObjects: readonly IChannelFactory[], optionalProviders: FluidObjectSymbolProvider<I["OptionalProviders"]>, registryEntries?: NamedFluidDataStoreRegistryEntries, runtimeClass?: typeof FluidDataStoreRuntime);
|
|
346
|
+
/**
|
|
347
|
+
* {@inheritDoc @fluidframework/runtime-definitions#IProvideFluidDataStoreFactory.IFluidDataStoreFactory}
|
|
348
|
+
*/
|
|
301
349
|
get IFluidDataStoreFactory(): this;
|
|
350
|
+
/**
|
|
351
|
+
* {@inheritDoc @fluidframework/runtime-definitions#IProvideFluidDataStoreRegistry.IFluidDataStoreRegistry}
|
|
352
|
+
*/
|
|
302
353
|
get IFluidDataStoreRegistry(): IFluidDataStoreRegistry | undefined;
|
|
303
354
|
/**
|
|
304
355
|
* Convenience helper to get the data store's/factory's data store registry entry.
|
|
@@ -308,11 +359,9 @@ export declare class PureDataObjectFactory<TObj extends PureDataObject<I>, I ext
|
|
|
308
359
|
*/
|
|
309
360
|
get registryEntry(): NamedFluidDataStoreRegistryEntry;
|
|
310
361
|
/**
|
|
311
|
-
*
|
|
312
|
-
*
|
|
313
|
-
* @param context - data store context used to load a data store runtime
|
|
362
|
+
* {@inheritDoc @fluidframework/runtime-definitions#IFluidDataStoreFactory.instantiateDataStore}
|
|
314
363
|
*/
|
|
315
|
-
instantiateDataStore(context: IFluidDataStoreContext, existing: boolean): Promise<
|
|
364
|
+
instantiateDataStore(context: IFluidDataStoreContext, existing: boolean): Promise<IFluidDataStoreChannel>;
|
|
316
365
|
/**
|
|
317
366
|
* Creates a new instance of the object. Uses parent context's registry to build package path to this factory.
|
|
318
367
|
* In other words, registry of context passed in has to contain this factory, with the name that matches
|
|
@@ -321,10 +370,11 @@ export declare class PureDataObjectFactory<TObj extends PureDataObject<I>, I ext
|
|
|
321
370
|
* @param context - The context being used to create the runtime
|
|
322
371
|
* (the created object will have its own new context created as well)
|
|
323
372
|
* @param initialState - The initial state to provide to the created data store.
|
|
373
|
+
* @param loadingGroupId - NOT production ready, EXPERIMENTAL, please read {@link https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime/README.md | README}. The service needs to support this feature, does not work for most services
|
|
324
374
|
* @returns an object created by this factory. Data store and objects created are not attached to container.
|
|
325
375
|
* They get attached only when a handle to one of them is attached to already attached objects.
|
|
326
376
|
*/
|
|
327
|
-
createChildInstance(parentContext: IFluidDataStoreContext, initialState?: I["InitialState"]): Promise<TObj>;
|
|
377
|
+
createChildInstance(parentContext: IFluidDataStoreContext, initialState?: I["InitialState"], loadingGroupId?: string): Promise<TObj>;
|
|
328
378
|
/**
|
|
329
379
|
* Creates a new instance of the object. Uses peer context's registry and its package path to identify this factory.
|
|
330
380
|
* In other words, registry of context passed in has to have this factory.
|
|
@@ -332,10 +382,11 @@ export declare class PureDataObjectFactory<TObj extends PureDataObject<I>, I ext
|
|
|
332
382
|
* @param context - The component context being used to create the object
|
|
333
383
|
* (the created object will have its own new context created as well)
|
|
334
384
|
* @param initialState - The initial state to provide to the created component.
|
|
385
|
+
* @param loadingGroupId - NOT production ready, EXPERIMENTAL, please read {@link https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime/README.md | README}. The service needs to support this feature, does not work for most services
|
|
335
386
|
* @returns an object created by this factory. Data store and objects created are not attached to container.
|
|
336
387
|
* They get attached only when a handle to one of them is attached to already attached objects.
|
|
337
388
|
*/
|
|
338
|
-
createPeerInstance(peerContext: IFluidDataStoreContext, initialState?: I["InitialState"]): Promise<TObj>;
|
|
389
|
+
createPeerInstance(peerContext: IFluidDataStoreContext, initialState?: I["InitialState"], loadingGroupId?: string): Promise<TObj>;
|
|
339
390
|
/**
|
|
340
391
|
* Creates a new instance of the object. Uses container's registry to find this factory.
|
|
341
392
|
* It's expected that only container owners would use this functionality, as only such developers
|
|
@@ -343,10 +394,24 @@ export declare class PureDataObjectFactory<TObj extends PureDataObject<I>, I ext
|
|
|
343
394
|
* The name in this registry for such record should match type of this factory.
|
|
344
395
|
* @param runtime - container runtime. It's registry is used to create an object.
|
|
345
396
|
* @param initialState - The initial state to provide to the created component.
|
|
397
|
+
* @param loadingGroupId - NOT production ready, EXPERIMENTAL, please read {@link https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime/README.md | README}. The service needs to support this feature, does not work for most services
|
|
346
398
|
* @returns an object created by this factory. Data store and objects created are not attached to container.
|
|
347
399
|
* They get attached only when a handle to one of them is attached to already attached objects.
|
|
348
400
|
*/
|
|
349
|
-
createInstance(runtime: IContainerRuntimeBase, initialState?: I["InitialState"]): Promise<TObj>;
|
|
401
|
+
createInstance(runtime: IContainerRuntimeBase, initialState?: I["InitialState"], loadingGroupId?: string): Promise<TObj>;
|
|
402
|
+
/**
|
|
403
|
+
* Creates a new instance of the object with a datastore which exposes the aliasing api.
|
|
404
|
+
* @param runtime - container runtime. It is the runtime that will be used to create the object. It will produce
|
|
405
|
+
* the underlying infrastructure to get the data object to operate.
|
|
406
|
+
* @param initialState - The initial state to provide to the created component.
|
|
407
|
+
* @param packagePath - The path to the data store factory to use to create the data object.
|
|
408
|
+
* @param loadingGroupId - NOT production ready, EXPERIMENTAL, please read {@link https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/container-runtime/README.md | README}. The service needs to support this feature, does not work for most services
|
|
409
|
+
* @returns an array containing the object created by this factory and an IDataStore object that enables users to
|
|
410
|
+
* alias the data object.
|
|
411
|
+
* The data object is attached only when it is attached to the handle graph that connects to an aliased object or
|
|
412
|
+
* when the data object is aliased.
|
|
413
|
+
*/
|
|
414
|
+
createInstanceWithDataStore(containerRuntime: IContainerRuntimeBase, initialState?: I["InitialState"], packagePath?: Readonly<string[]>, loadingGroupId?: string): Promise<[TObj, IDataStore]>;
|
|
350
415
|
/**
|
|
351
416
|
* Creates a new root instance of the object. Uses container's registry to find this factory.
|
|
352
417
|
* It's expected that only container owners would use this functionality, as only such developers
|
|
@@ -356,9 +421,12 @@ export declare class PureDataObjectFactory<TObj extends PureDataObject<I>, I ext
|
|
|
356
421
|
* @param initialState - The initial state to provide to the created component.
|
|
357
422
|
* @returns an object created by this factory. Data store and objects created are not attached to container.
|
|
358
423
|
* They get attached only when a handle to one of them is attached to already attached objects.
|
|
424
|
+
*
|
|
425
|
+
* @deprecated - the issue is that it does not allow the customer to decide the conflict resolution policy when an
|
|
426
|
+
* aliasing conflict occurs. Use {@link PureDataObjectFactory.createInstanceWithDataStore} instead.
|
|
359
427
|
*/
|
|
360
428
|
createRootInstance(rootDataStoreId: string, runtime: IContainerRuntime, initialState?: I["InitialState"]): Promise<TObj>;
|
|
361
|
-
protected createNonRootInstanceCore(containerRuntime: IContainerRuntimeBase, packagePath: Readonly<string[]>, initialState?: I["InitialState"]): Promise<TObj>;
|
|
429
|
+
protected createNonRootInstanceCore(containerRuntime: IContainerRuntimeBase, packagePath: Readonly<string[]>, initialState?: I["InitialState"], loadingGroupId?: string): Promise<TObj>;
|
|
362
430
|
protected createInstanceCore(context: IFluidDataStoreContextDetached, initialState?: I["InitialState"]): Promise<TObj>;
|
|
363
431
|
}
|
|
364
432
|
|
package/dist/aqueduct-beta.d.ts
CHANGED
|
@@ -23,7 +23,9 @@ import { IContainerContext } from '@fluidframework/container-definitions';
|
|
|
23
23
|
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions';
|
|
24
24
|
import { IContainerRuntimeBase } from '@fluidframework/runtime-definitions';
|
|
25
25
|
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime';
|
|
26
|
+
import { IDataStore } from '@fluidframework/runtime-definitions';
|
|
26
27
|
import { IEvent } from '@fluidframework/core-interfaces';
|
|
28
|
+
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions';
|
|
27
29
|
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
28
30
|
import { IFluidDataStoreContextDetached } from '@fluidframework/runtime-definitions';
|
|
29
31
|
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
@@ -47,10 +49,14 @@ import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
|
47
49
|
|
|
48
50
|
/* Excluded from this release type: BaseContainerRuntimeFactory */
|
|
49
51
|
|
|
52
|
+
/* Excluded from this release type: BaseContainerRuntimeFactoryProps */
|
|
53
|
+
|
|
50
54
|
/* Excluded from this release type: ContainerRuntime */
|
|
51
55
|
|
|
52
56
|
/* Excluded from this release type: ContainerRuntimeFactoryWithDefaultDataStore */
|
|
53
57
|
|
|
58
|
+
/* Excluded from this release type: ContainerRuntimeFactoryWithDefaultDataStoreProps */
|
|
59
|
+
|
|
54
60
|
/* Excluded from this release type: DataObject */
|
|
55
61
|
|
|
56
62
|
/* Excluded from this release type: DataObjectFactory */
|
|
@@ -71,6 +77,10 @@ import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
|
71
77
|
|
|
72
78
|
/* Excluded from this release type: IDataObjectProps */
|
|
73
79
|
|
|
80
|
+
/* Excluded from this release type: IDataStore */
|
|
81
|
+
|
|
82
|
+
/* Excluded from this release type: IFluidDataStoreChannel */
|
|
83
|
+
|
|
74
84
|
/* Excluded from this release type: IFluidDataStoreContext */
|
|
75
85
|
|
|
76
86
|
/* Excluded from this release type: IFluidDataStoreContextDetached */
|
|
@@ -23,7 +23,9 @@ import { IContainerContext } from '@fluidframework/container-definitions';
|
|
|
23
23
|
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions';
|
|
24
24
|
import { IContainerRuntimeBase } from '@fluidframework/runtime-definitions';
|
|
25
25
|
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime';
|
|
26
|
+
import { IDataStore } from '@fluidframework/runtime-definitions';
|
|
26
27
|
import { IEvent } from '@fluidframework/core-interfaces';
|
|
28
|
+
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions';
|
|
27
29
|
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
28
30
|
import { IFluidDataStoreContextDetached } from '@fluidframework/runtime-definitions';
|
|
29
31
|
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
@@ -47,10 +49,14 @@ import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
|
47
49
|
|
|
48
50
|
/* Excluded from this release type: BaseContainerRuntimeFactory */
|
|
49
51
|
|
|
52
|
+
/* Excluded from this release type: BaseContainerRuntimeFactoryProps */
|
|
53
|
+
|
|
50
54
|
/* Excluded from this release type: ContainerRuntime */
|
|
51
55
|
|
|
52
56
|
/* Excluded from this release type: ContainerRuntimeFactoryWithDefaultDataStore */
|
|
53
57
|
|
|
58
|
+
/* Excluded from this release type: ContainerRuntimeFactoryWithDefaultDataStoreProps */
|
|
59
|
+
|
|
54
60
|
/* Excluded from this release type: DataObject */
|
|
55
61
|
|
|
56
62
|
/* Excluded from this release type: DataObjectFactory */
|
|
@@ -71,6 +77,10 @@ import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
|
71
77
|
|
|
72
78
|
/* Excluded from this release type: IDataObjectProps */
|
|
73
79
|
|
|
80
|
+
/* Excluded from this release type: IDataStore */
|
|
81
|
+
|
|
82
|
+
/* Excluded from this release type: IFluidDataStoreChannel */
|
|
83
|
+
|
|
74
84
|
/* Excluded from this release type: IFluidDataStoreContext */
|
|
75
85
|
|
|
76
86
|
/* Excluded from this release type: IFluidDataStoreContextDetached */
|