We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove the entity and notify other web clients it deleted (D command), remove from maps
problem: how to detect when a websocket disconnects in netty? (there is a regular heartbeat/ping I believe)
The text was updated successfully, but these errors were encountered:
public void userEventTriggered(final ChannelHandlerContext ctx, Object evt) throws Exception { is not called when the channel closes, but public void channelInactive(ChannelHandlerContext ctx) { is, documented in http://netty.io/4.0/api/io/netty/channel/ChannelInboundHandler.html#channelInactive-io.netty.channel.ChannelHandlerContext-
public void userEventTriggered(final ChannelHandlerContext ctx, Object evt) throws Exception {
public void channelInactive(ChannelHandlerContext ctx) {
Sorry, something went wrong.
64ba129
Implemented, but note Glowstone bug: GlowstoneMC/Glowstone#453
No branches or pull requests
Remove the entity and notify other web clients it deleted (D command), remove from maps
problem: how to detect when a websocket disconnects in netty? (there is a regular heartbeat/ping I believe)
The text was updated successfully, but these errors were encountered: