diff --git a/packages/dds/ordered-collection/api-report/ordered-collection.api.md b/packages/dds/ordered-collection/api-report/ordered-collection.api.md index 4167c46d7884..11996f8d7cc3 100644 --- a/packages/dds/ordered-collection/api-report/ordered-collection.api.md +++ b/packages/dds/ordered-collection/api-report/ordered-collection.api.md @@ -62,9 +62,8 @@ export class ConsensusQueueFactory implements IConsensusOrderedCollectionFactory static readonly Attributes: IChannelAttributes; // (undocumented) get attributes(): IChannelAttributes; - // @alpha (undocumented) + // (undocumented) create(document: IFluidDataStoreRuntime, id: string): IConsensusOrderedCollection; - // @alpha load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes): Promise; // (undocumented) static Type: string; diff --git a/packages/dds/ordered-collection/src/consensusOrderedCollectionFactory.ts b/packages/dds/ordered-collection/src/consensusOrderedCollectionFactory.ts index e2728bba43eb..8da355fb030a 100644 --- a/packages/dds/ordered-collection/src/consensusOrderedCollectionFactory.ts +++ b/packages/dds/ordered-collection/src/consensusOrderedCollectionFactory.ts @@ -35,7 +35,6 @@ export class ConsensusQueueFactory implements IConsensusOrderedCollectionFactory /** * {@inheritDoc @fluidframework/datastore-definitions#IChannelFactory.load} - * @alpha */ public async load( runtime: IFluidDataStoreRuntime, @@ -48,9 +47,6 @@ export class ConsensusQueueFactory implements IConsensusOrderedCollectionFactory return collection; } - /** - * @alpha - */ public create(document: IFluidDataStoreRuntime, id: string): IConsensusOrderedCollection { const collection = new ConsensusQueue(id, document, this.attributes); collection.initializeLocal();