Ability to listen for PongWebSocketFrame frame on websocket server #5249
Unanswered
bossman0072
asked this question in
Ideas
Replies: 0 comments
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.
-
Need ability to listen for PongWebSocketFrame frame on websocket server. Current implementation AbstractNettyWebSocketHandler has code like this:
if (msg instanceof PongWebSocketFrame) { return; }
There is no way to receive PongWebSocketFrame on websocket server. Annotation like @onpong for method would be convenient.
Beta Was this translation helpful? Give feedback.
All reactions