There was an issue with the WebsocketLink, because it parses every websocket message multiple times, unnecessarily slowing down the app. In fact it was so slow that my app was unusable.
So I made the messages stream a broadcast stream, this fixes the issue.
There was an issue with the
WebsocketLink
, because it parses every websocket message multiple times, unnecessarily slowing down the app. In fact it was so slow that my app was unusable.So I made the
messages
stream abroadcast stream
, this fixes the issue.1