admin管理员组文章数量:1345288
I know terminate hard closes a socket not letting it hang or send more packets like close does, and terminate sends a different code when closing a socket (1006 vs close sending 1000). So this raises the question, why would I even used ws.close() when I dont plan on reopening a socket? Ive seen so many examples that just use ws.close() and never reopen it. Is it just not well known or standard or is there something behind the scenes Im not aware of?
I know terminate hard closes a socket not letting it hang or send more packets like close does, and terminate sends a different code when closing a socket (1006 vs close sending 1000). So this raises the question, why would I even used ws.close() when I dont plan on reopening a socket? Ive seen so many examples that just use ws.close() and never reopen it. Is it just not well known or standard or is there something behind the scenes Im not aware of?
Share Improve this question asked Oct 15, 2022 at 17:55 DrakoHyenaDrakoHyena 971 silver badge11 bronze badges 3-
5
With
.close()
you wave your friends goodbye, with.terminate()
you slam the door in their faces. – robertklep Commented Oct 15, 2022 at 17:59 - 1 Please do not just re-post your previous question when it was closed – Bergi Commented Oct 15, 2022 at 18:02
- @Bergi, sorry however it was closed due to being opinion based when it was clearly not and none of my reopen requests went through. My only other option was to make a new post with things changed around. – DrakoHyena Commented Oct 16, 2022 at 12:00
1 Answer
Reset to default 13Closing the web socket will wait for buffered messages to be finished, and initiate the closing handshake. This includes an optional close code and an optional close reason. It tells client that the websocket is now closed and no further messages will be sent, and once the other end acknowledges that, the tcp connection will be closed. See 1.4 Closing handshake:
The closing handshake is intended to plement the TCP closing handshake (FIN/ACK), on the basis that the TCP closing handshake is not always reliable end-to-end, especially in the presence of intercepting proxies and other intermediaries.
By sending a Close frame and waiting for a Close frame in response, certain cases are avoided where data may be unnecessarily lost. For instance, on some platforms, if a socket is closed with data in the receive queue, a RST packet is sent, which will then cause recv() to fail for the party that received the RST, even if there was data waiting to be read.
This is considered a clean closure. The close code informs the status on the other end, or leads to status 1005 if omitted.
Terminating the web socket will just drop the connection. It calls
socket.destroy()
, no close frames are sent or anything, not even the tcp connection is closed cleanly with FIN. This leads to status 1006 on the other end, after it has run into a timeout.
The downside of having a closing handshake in the protocol is that a closing connection might be left hanging in a limbo state when the other end is no longer responding at all. Only a timeout will end that, with various problems.
Why would I even use
ws.close()
when I don't plan on reopening a socket?
You should always gracefully close()
your web socket to notify the other end that the connection ends. You should also send the close reason 1000 (as the client) or 1001 (as the server) to tell the other end that they should not try to reconnect.
If a server needs to drop the connection but will bee available again soon after, it might forcibly close the TCP connection. This will cause the client to immediately detect an abnormal closure, and it might attempt to automatically reconnect after a short time. (There is no method to do this in the ws
library, you'd have to call ws._socket.end()
).
If you terminate()
a working connection, the other end will not notice anything. Only when it tries to send something (e.g. a ping()
), after some timeout it will find that the tcp connection was lost and the websocket will bee abnormally closed. Don't do that!
You should only ever call terminate()
if you have determined that the connection has already been lost - like in the heartbeat example. This will free up resources on your end quickly and immediately fire the respective stream events on the ws
object.
本文标签: javascriptWhen is it preferable to use wsterminate() VS wsclose()Stack Overflow
版权声明:本文标题:javascript - When is it preferable to use ws.terminate() VS ws.close() - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778647a2537445.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论