We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I do not see a point of exposing protocol-level messages in DDS API. This seems weird. Can we remove it?
export interface ISharedDirectoryEvents extends ISharedObjectEvents { (event: "valueChanged", listener: ( changed: IDirectoryValueChanged, local: boolean, op: ISequencedDocumentMessage | null, target: IEventThisPlaceHolder, ) => void); (event: "clear", listener: ( local: boolean, op: ISequencedDocumentMessage | null, target: IEventThisPlaceHolder, ) => void); } export interface ISharedMapEvents extends ISharedObjectEvents { (event: "valueChanged", listener: ( changed: IValueChanged, local: boolean, op: ISequencedDocumentMessage | null, target: IEventThisPlaceHolder) => void); (event: "clear", listener: ( local: boolean, op: ISequencedDocumentMessage | null, target: IEventThisPlaceHolder ) => void); }
The text was updated successfully, but these errors were encountered:
Sounds good to me, also the valueChanged events.
Sorry, something went wrong.
ChumpChief
Successfully merging a pull request may close this issue.
I do not see a point of exposing protocol-level messages in DDS API.
This seems weird. Can we remove it?
The text was updated successfully, but these errors were encountered: