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
Currently, the lagom.js WebSocket client does not support back-pressure for sending or receiving messages over the socket. As described here, back-pressure for receiving messages is not possible under the current WebSocket standard.
However, it is possible to provide back-pressure for sent messages using WebSocket.bufferedAmount, as described here. We should evaluate if sending side back-pressure can be implemented using this approach.
The text was updated successfully, but these errors were encountered:
Currently, the lagom.js WebSocket client does not support back-pressure for sending or receiving messages over the socket. As described here, back-pressure for receiving messages is not possible under the current WebSocket standard.
However, it is possible to provide back-pressure for sent messages using
WebSocket.bufferedAmount
, as described here. We should evaluate if sending side back-pressure can be implemented using this approach.The text was updated successfully, but these errors were encountered: