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
While working on a pet project I found a couple issues with the websocket documentation:
make it clear that you need to have all@OnOpen, @OnMessage and @OnClose methods. Any missing one, even if it does nothing, will result in a bean missing exception, which is confusing
clarify how to use a web socket client. There are both WebSocketClient and ClientWebSocket, you need both, but both accept an URI. Also it's extremely unclear whether it's possible to have a non reactive websocket client.
The text was updated successfully, but these errors were encountered:
Issue description
While working on a pet project I found a couple issues with the websocket documentation:
@OnOpen
,@OnMessage
and@OnClose
methods. Any missing one, even if it does nothing, will result in a bean missing exception, which is confusingWebSocketClient
andClientWebSocket
, you need both, but both accept an URI. Also it's extremely unclear whether it's possible to have a non reactive websocket client.The text was updated successfully, but these errors were encountered: