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
The current implementation of Document.subscribe provides sufficient event support corresponding to Channel or Room. To simplify the usage of the Client as a simple Connection object, the Client.subscribe method should be removed.
Why:
Removing Client.subscribe, the system can be streamlined for better usability and consistent functionality.
The text was updated successfully, but these errors were encountered:
The current ClientEvent includes four events: StatusChangedEvent, DocumentChangedEvent, StreamConnectionStatusChangedEvent, and DocumentSyncedEvent. Upon reconsideration, it appears some places may still require these events. What do you think about the following modifications?
StatusChangedEvent = activated | deactivated
Since it's not being used, it can be removed for now and added back when needed.
DocumentChangedEvent
This event can be used to detect changes in the document when performing manual sync. It can be moved to document.subscribe().
Thank you for the detailed investigation. Since there is currently no use case for Client.Subscribe, it may be a good idea to remove it and add it later as needed.
Description:
The current implementation of
Document.subscribe
provides sufficient event support corresponding toChannel
orRoom
. To simplify the usage of the Client as a simple Connection object, theClient.subscribe
method should be removed.Why:
Removing
Client.subscribe
, the system can be streamlined for better usability and consistent functionality.The text was updated successfully, but these errors were encountered: