- canBeUsedInCloseFrame(int) - Static method in class ej.websocket.CloseCodes
-
Tell if can be used in a close control frame.
- CATEGORY - Static variable in class ej.websocket.Messages
-
Category message errors.
- CLIENT_EXPECTED_EXTENSIONS_FROM_SERVER - Static variable in class ej.websocket.CloseCodes
-
1010 indicates that an endpoint (client) is terminating the connection because it has expected the server to
negotiate one or more extension, but the server didn't return them in the response message of the WebSocket
handshake.
- ClientFrameBuilder - Class in ej.websocket.frame
-
This build will create frames that a client can send.
- ClientFrameBuilder() - Constructor for class ej.websocket.frame.ClientFrameBuilder
-
- CLOSE - Static variable in class ej.websocket.Messages
-
A close has been request.
- close(ReasonForClosure) - Method in class ej.websocket.WebSocket
-
Close the websocket connection as described in Section 7.
- close() - Method in class ej.websocket.WebSocket
-
Equivalent to close(new ReasonForClosure(CloseCodes.NORMAL_CLOSURE, ""))
.
- CLOSE_TCP - Static variable in class ej.websocket.Messages
-
Close TCP connection.
- CloseCodes - Class in ej.websocket
-
RFC6455 defined a list a status codes (section 7.4.1) and reserved code ranges (section 7.4.2).
- connect() - Method in class ej.websocket.WebSocket
-
Establish a connection to the server described by the URI.
- CONNECTION_CLOSED_ABNORMALLY - Static variable in class ej.websocket.CloseCodes
-
1006 is a reserved value and MUST NOT be set as a status code in a Close control frame by an endpoint.
- ConnectionStates - Enum in ej.websocket
-
RFC6455 defined several possible states for a websocket.