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
-
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