A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/close_event below:

WebSocket: close event - Web APIs

WebSocket: close event

Baseline Widely available

Note: This feature is available in Web Workers.

The close event is fired when a connection with a WebSocket is closed.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

addEventListener("close", (event) => { })

onclose = (event) => { }
Event type Event properties

In addition to the properties listed below, properties from the parent interface, Event, are available.

code Read only

Returns an unsigned short containing the close code sent by the server.

reason Read only

Returns a string indicating the reason the server closed the connection. This is specific to the particular server and sub-protocol.

wasClean Read only

Returns a boolean value that Indicates whether or not the connection was cleanly closed.

Examples

You might want to know when the connection has been closed so that you can update the UI or, perhaps, save data about the closed connection. Given that you have a variable called exampleSocket that refers to an opened WebSocket, this handler would handle the situation where the socket has been closed.

exampleSocket.addEventListener("close", (event) => {
  console.log("The connection has been closed successfully.");
});

You can perform the same actions using the event handler property, like this:

exampleSocket.onclose = (event) => {
  console.log("The connection has been closed successfully.");
};
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4