Class WebSocketCloseEventWearable Only

Event type for WebSocket close events. This event indicates when the WebSocket connection has been closed. Listen for this event by using addEventListener with close, or by setting the onclose property.

websocket.onclose = (event) => {
print("The connection has been closed.");
};

Hierarchy (View Summary)

Constructors

Properties

Methods

Constructors

Properties

code: number

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

Status Code Meaning Description
0999 Not used.
1000 Normal Closure The connection successfully completed the purpose for which it was created.
1001 Going Away The endpoint is going away, either because of a server failure or because the browser is navigating away from the page that opened the connection.
1002 Protocol error The endpoint is terminating the connection due to a protocol error.
1003 Unsupported Data The connection is being terminated because the endpoint received data of a type it cannot accept. (For example, a text-only endpoint received binary data.)
1004 Reserved Reserved. A meaning might be defined in the future.
1005 No Status Rcvd Reserved. Indicates that no status code was provided even though one was expected.
1006 Abnormal Closure Reserved. Indicates that a connection was closed abnormally (that is, with no close frame being sent) when a status code is expected.
1007 Invalid frame payload data The endpoint is terminating the connection because a message was received that contained inconsistent data (e.g., non-UTF-8 data within a text message).
1008 Policy Violation The endpoint is terminating the connection because it received a message that violates its policy. This is a generic status code, used when codes 1003 and 1009 are not suitable.
1009 Message Too Big The endpoint is terminating the connection because a data frame was received that is too large.
1010 Mandatory Ext. The client is terminating the connection because it expected the server to negotiate one or more extensions, but the server didn't.
1011 Internal Error The server is terminating the connection because it encountered an unexpected condition that prevented it from fulfilling the request.
1012 Service Restart The server is terminating the connection because it is restarting.
1013 Try Again Later The server is terminating the connection due to a temporary condition, e.g., it is overloaded and is casting off some of its clients.
1014 Bad Gateway The server was acting as a gateway or proxy and received an invalid response from the upstream server. This is similar to 502 HTTP Status Code.
1015 TLS handshake Reserved. Indicates that the connection was closed due to a failure to perform a TLS handshake (e.g., the server certificate can't be verified).
10162999 For definition by future revisions of the WebSocket Protocol specification, and for definition by extension specifications.
30003999 For use by libraries, frameworks, and applications. These status codes are registered directly with IANA. The interpretation of these codes is undefined by the WebSocket protocol.
40004999 For private use, and thus can't be registered.
reason: string

The reason the WebSocket connection was closed.

wasClean: boolean

True if the socket connection was closed without error.

Methods

  • Returns true if the object matches or derives from the passed in type.

    Parameters

    • type: string

    Returns boolean

  • Returns true if this object is the same as other. Useful for checking if two references point to the same thing.

    Parameters

    Returns boolean