I'm trying to determine if a client has closed a socket connection from netty. Is there a way to do this?
On a usual case where a client closes the socket via close()
and the TCP closing handshake has been finished successfully, a channelInactive()
(or channelClosed()
in 3) event will be triggered.
However, on an unusual case such as where a client machine goes offline due to power outage or unplugged LAN cable, it can take a lot of time until you discover the connection was actually down. To detect this situation, you have to send some message to the client periodically and expect to receive its response within a certain amount of time. It's like a ping - you should define a periodic ping and pong message in your protocol which practically does nothing but checking the health of the connection.
Alternatively, you can enable SO_KEEPALIVE
, but the keepalive interval of this option is usually OS-dependent and I would not recommend using it.
To help a user implement this sort of behavior relatively easily, Netty provides ReadTimeoutHandler
. Configure your pipeline so that ReadTimeoutHandler
raises an exception when there's no inbound traffic for a certain amount of time, and close the connection on the exception in your exceptionCaught()
handler method. If you are the party who is supposed to send a periodic ping message, use a timer (or IdleStateHandler
) to send it.