- get() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a single byte from the buffer at the current position.
- get(byte[], int, int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
- getArray() - Method in class com.kaazing.gateway.client.ByteBuffer
-
The array property provides byte storage for the buffer.
- getArrayBuffer(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns an ArrayBuffer from the buffer at the current position.
- getAt(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a single byte from the buffer at the specified index.
- getAutoExpand() - Method in class com.kaazing.gateway.client.ByteBuffer
-
The autoExpand property enables writing variable length data, and is on by default.
- getBufferedAmount() - Method in class com.kaazing.gateway.client.WebSocket
-
The number of bytes queued to be sent
- getBytes() - Method in class com.kaazing.gateway.client.ByteBuffer
-
- getBytes(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
- getCapacity() - Method in class com.kaazing.gateway.client.ByteBuffer
-
The capacity property indicates the maximum number of bytes of storage
available if the buffer is not automatically expanding.
- getCode() - Method in class com.kaazing.gateway.client.NativeCloseEvent
-
- getCode() - Method in class com.kaazing.gateway.client.WebSocket.CloseEvent
-
- getData() - Method in class com.kaazing.gateway.client.NativeMessageEvent
-
- getData() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getDataAsByteBuffer() - Method in class com.kaazing.gateway.client.NativeMessageEvent
-
- getDataAsByteBuffer() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getDataAsString() - Method in class com.kaazing.gateway.client.NativeMessageEvent
-
- getDataAsString() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getDataType() - Method in class com.kaazing.gateway.client.NativeMessageEvent
-
- getDataType() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getDefaultConnectTimeout() - Method in class com.kaazing.gateway.client.WebSocketFactory
-
Returns the default connection timeout in milliseconds.
- getExtension(String) - Method in class com.kaazing.gateway.client.WebSocketFactory
-
get the WebSocketExtension with the extension name.
- getHexDump() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a hex dump of this buffer.
- getInt() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a 4-byte number from the buffer at the current position.
- getIntAt(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a 4-byte number from the buffer at the specified index.
- getLastEventId() - Method in class com.kaazing.gateway.client.NativeMessageEvent
-
- getLastEventId() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getLong() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a 4-byte number from the buffer at the current position.
- getMediumInt() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a 3-byte number from the buffer at the current position.
- getMediumIntAt(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a 3-byte number from the buffer at the specified index.
- getMessagePortArray() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getNativeEvent() - Method in class com.kaazing.gateway.client.WebSocket.CloseEvent
-
- getNativeEvent() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getOrder() - Method in class com.kaazing.gateway.client.ByteBuffer
-
The order property indicates the endianness of multibyte integer types in the buffer.
- getOrigin() - Method in class com.kaazing.gateway.client.NativeMessageEvent
-
- getOrigin() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getPorts() - Method in class com.kaazing.gateway.client.NativeMessageEvent
-
- getPrefixedString(int, Charset) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a length-prefixed string from the buffer at the current position.
- getReadyState() - Method in class com.kaazing.gateway.client.WebSocket
-
The ready state indicates the connection status.
- getReason() - Method in class com.kaazing.gateway.client.NativeCloseEvent
-
- getReason() - Method in class com.kaazing.gateway.client.WebSocket.CloseEvent
-
- getShort() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a 2-byte number from the buffer at the current position.
- getShortAt(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a 2-byte number from the buffer at the specified index.
- getSource() - Method in class com.kaazing.gateway.client.NativeMessageEvent
-
- getSource() - Method in class com.kaazing.gateway.client.WebSocket.MessageEvent
-
- getString(Charset) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns a null-terminated string from the buffer at the current position.
- getUnsigned() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns an unsigned single-byte number from the buffer at the current position.
- getUnsignedInt() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns an unsigned 4-byte number from the buffer at the current position.
- getUnsignedMediumInt() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns an unsigned 3-byte number from the buffer at the current position.
- getUnsignedShort() - Method in class com.kaazing.gateway.client.ByteBuffer
-
Returns an unsigned 2-byte number from the buffer at the current position.
- getURL() - Method in class com.kaazing.gateway.client.WebSocket
-
The URL with which the WebSocket was constructed.
- getUTF8() - Static method in class com.kaazing.gateway.client.Charset
-
- position() - Method in class com.kaazing.gateway.client.ByteBuffer
-
The position property indicates the progress through the buffer, and indicates
the position within the underlying array that subsequent data will be read from
or written to.
- position(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
- put(byte) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a single byte number into the buffer at the current position.
- putAt(int, byte) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a single byte number into the buffer at the specified index.
- putBuffer(ByteBuffer) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a buffer into the buffer at the current position.
- putBufferAt(int, ByteBuffer) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a buffer into the buffer at the specified index.
- putBytes(byte[]) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a single-byte array into the buffer at the current position.
- putBytesAt(int, byte[]) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a byte array into the buffer at the specified index.
- putInt(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a 4-byte number into the buffer at the current position.
- putIntAt(int, int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a 4-byte number into the buffer at the specified index.
- putLong(long) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a 8-byte number into the buffer at the current position.
- putLongAt(int, long) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a 8-byte number into the buffer at the specified index.
- putMediumInt(int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a 3-byte number into the buffer at the current position.
- putMediumIntAt(int, int) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a 3-byte number into the buffer at the specified index.
- putPrefixedString(int, int, Charset) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a string into the buffer at the specified index, using the character set to
encode the string as bytes.
- putShort(short) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a 2-byte number into the buffer at the current position.
- putShortAt(int, short) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a 2-byte number into the buffer at the specified index.
- putString(String, Charset) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a string into the buffer at the current position, using the character set to
encode the string as bytes.
- putUnsignedShort(short) - Method in class com.kaazing.gateway.client.ByteBuffer
-
Puts a two-byte array into the buffer at the current position.