Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Protected APIs marked with @internal for SharedMap and Counter #7521

Merged
merged 9 commits into from
Sep 28, 2021
Prev Previous commit
Next Next commit
add @internal to counter
  • Loading branch information
skylerjokiel committed Sep 17, 2021
commit ce6320e043dbecafc7b0451bbb0569163087a903
1 change: 1 addition & 0 deletions packages/dds/counter/src/counter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ export class SharedCounter extends SharedObject<ISharedCounterEvents> implements
* @param local - whether the message was sent by the local client
* @param localOpMetadata - For local client messages, this is the metadata that was submitted with the message.
* For messages from a remote client, this will be undefined.
* @internal
*/
protected processCore(message: ISequencedDocumentMessage, local: boolean, localOpMetadata: unknown) {
if (message.type === MessageType.Operation && !local) {
Expand Down