Netty Channel closed detection

青春壹個敷衍的年華 提交于 2019-12-30 00:38:06

问题


I am building a server client application using netty and ios, I am facing a problem when the user just turns off WiFi on his/her ios device, the netty server does not know about it. The server needs to know to do cleanup for that user and set him/her offline, but now when the user tries to connect again, the server just tells him that he/she is already online.


回答1:


If I understood your problem correctly: You want to listen for client channel closed events in server side and do some session cleanup,

There are two ways to listen for channel closed events in Netty :

1) If your server handler extends SimpleChannelHandler/SimpleChannelHandler, then you can override following method and write your session cleanup logic there

public void channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) throws Exception;

2) If you have only access to the channel reference, then you can get the channel close future and register your implementation of ChannelFutureListener with your session cleanup logic,

ChannelFuture closeFuture = channel.closeFuture();

closeFuture.addListener(new ChannelFutureListener() {
    @Override
    public void operationComplete(ChannelFuture future) throws Exception {
        //session cleanup logic
    }
});



回答2:


Use IdleStateHandler

You can detect when there is no request/responses in given time intervals.




回答3:


Check session id and allow renegotiation. Or you may use something like cookie controller. May I ask off topic question: How does your client on ios interact with netty server? (what framework you use on client side, and what decoder/encoder use? )



来源:https://stackoverflow.com/questions/8785949/netty-channel-closed-detection

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!