Listen for PongWebSocketFrame in class annotated @ServerWebSocket #5246
Unanswered
bossman0072
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Looks like a limitation, what is the use case for listening for this frame? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My websocket server is sending PingWebSocketFrame and then receives PongWebSocketFrame. How could I listen for that frame?
Source of AbstractNettyWebSocketHandler has code like this:
if (msg instanceof PongWebSocketFrame) { return; }
As I understand there is no way for handling PongWebSocketFrame. Am I right?
Beta Was this translation helpful? Give feedback.
All reactions