- IFrameBuilder - Interface in ej.websocket.frame
-
An IFrameBuilder knows how to create different kind of frames.
- insertRange(byte[], int, int) - Static method in class ej.websocket.util.ArraysTools
-
Inserts a range of data in an array.
- INVALID_CLOSE_CODE - Static variable in class ej.websocket.Messages
-
The close code is not valid.
- INVALID_CONNECTION - Static variable in class ej.websocket.Messages
-
Invalid connection field.
- INVALID_FRAME - Static variable in class ej.websocket.Messages
-
We received an invalid frame.
- INVALID_INCOMING_DATA_TYPE - Static variable in class ej.websocket.CloseCodes
-
1003 indicates that an endpoint is terminating the connection because it has received a type of data it cannot
accept (e.g., an endpoint that understands only text data MAY send this if it receives a binary message).
- INVALID_LENGTH - Static variable in class ej.websocket.Messages
-
Payload length cannot be greater than 125.
- INVALID_SEC_WEBSOCKET_ACCEPT - Static variable in class ej.websocket.Messages
-
Missing Sec-WebSocket-Accept header.
- INVALID_SEQUENCE - Static variable in class ej.websocket.Messages
-
An invalid sequence of fragmented frame arrived.
- INVALID_STATUS - Static variable in class ej.websocket.Messages
-
The status code is invalid.
- INVALID_UPGRADE - Static variable in class ej.websocket.Messages
-
Invalid upgrade field.
- INVALID_UTF8 - Static variable in class ej.websocket.Messages
-
We received an UTF8 frame that has an unvalid payload.
- isControlFrame() - Method in class ej.websocket.frame.RawFrame
-
Tell whether this frame is a control frame or not.
- isMasked() - Method in class ej.websocket.frame.RawFrame
-
A convenient method to test whether the frame is masked or not.
- isSecure() - Method in class ej.websocket.WebSocketURI
-
Tell if the websocket is secured or not.
- isValid() - Method in class ej.websocket.frame.RawFrame
-
Tell whether is valid or not, according to the RFC6455.
- isValid(byte[], int, int) - Static method in class ej.websocket.util.UTF8Validator
-
Checks the validity of UTF8 array of bytes.