Package | Description |
---|---|
biz.onixs.cme.ilink3.handler | |
biz.onixs.cme.ilink3.testing | |
biz.onixs.util |
Modifier and Type | Method and Description |
---|---|
static FramedDeserializer.DeserializationResult |
FramedDeserializer.tryDeserialize(ByteBuffer buffer,
ByteBuffer msgData) |
Modifier and Type | Method and Description |
---|---|
void |
Emulator.send(ByteBuffer rawMsg)
Sends a raw message.
|
Modifier and Type | Method and Description |
---|---|
ByteBuffer |
ByteBuffer.append(byte b)
Appends a byte to byte buffer.
|
ByteBuffer |
ByteBuffer.append(byte[] buffer)
Appends bytes array to byte buffer.
|
ByteBuffer |
ByteBuffer.append(byte[] buffer,
int length)
Append bytes array to byte buffer with specified length.
|
ByteBuffer |
ByteBuffer.append(byte[] buffer,
int offset,
int length)
Appends bytes array to byte buffer from specified offset with specified length.
|
ByteBuffer |
ByteBuffer.append(ByteBuffer byteBuffer)
Appends bytes taken from specified byte buffer.
|
ByteBuffer |
ByteBuffer.append(char c)
Appends a character to byte buffer.
|
ByteBuffer |
ByteBuffer.append(long value)
Appends bytes array converted from long number.
|
ByteBuffer |
ByteBuffer.append(String str)
Appends bytes array encoded from string to byte buffer.
|
ByteBuffer |
ByteBuffer.append(ValuePtr value)
Appends bytes taken from value pointer to byte buffer.
|
ByteBuffer |
ByteBuffer.appendCheckSum(int checkSum)
Appends bytes array converted from int number in checksum format.
|
ByteBuffer |
ByteBuffer.clear()
Clears the byte buffer.
|
ByteBuffer |
ByteBuffer.copy()
Copies this byte buffer and returns a copy.
|
ByteBuffer |
ByteBuffer.erase(int length)
Erases bytes from the beginning of byte buffer with specified length.
|
ByteBuffer |
ByteBuffer.erase(int length,
int startPsn)
Erases bytes from specified position and with length form byte buffer.
|
ByteBuffer |
ByteBuffer.incLength(int size)
Increases data size of byte buffer by the specified size.
|
ByteBuffer |
ByteBuffer.insert(byte[] bytes,
int pos)
Inserts the bytes array at the specified position.
|
ByteBuffer |
ByteBuffer.insert(byte[] buffer,
int length,
int startPsn)
Inserts the bytes array with length at the specified position.
|
ByteBuffer |
ByteBuffer.insert(byte[] buffer,
int offset,
int length,
int startPsn)
Inserts the bytes array from specified offset with length at the specified position.
|
ByteBuffer |
ByteBuffer.insert(ByteBuffer buffer,
int startPsn)
Inserts the content of the buffer at the specified position.
|
ByteBuffer |
ByteBuffer.insert(byte b,
int pos)
Inserts the byte at the specified position.
|
ByteBuffer |
ByteBuffer.insert(byte b,
int pos,
int times)
Inserts the byte at the specified position and at specified times.
|
ByteBuffer |
ByteBuffer.insert(char c,
int pos)
Inserts the char converted to byte at the specified position.
|
ByteBuffer |
ByteBuffer.insert(long l,
int pos)
Inserts the long number converted to bytes at the specified position.
|
ByteBuffer |
ByteBuffer.insert(String s,
int pos)
Inserts the string encoded to bytes at the specified position.
|
ByteBuffer |
ByteBuffer.overwrite(byte[] buffer,
int length)
Overwrites data.
|
ByteBuffer |
ByteBuffer.overwrite(ByteBuffer byteBuffer)
Overwrites data.
|
ByteBuffer |
ByteBuffer.overwrite(int startPsn,
byte[] buffer,
int length)
Overwrites data.
|
ByteBuffer |
ByteBuffer.overwrite(int startPsn,
byte[] buffer,
int length,
int offset)
Overwrites data.
|
ByteBuffer |
ByteBuffer.reserve(int expectedCapacity)
Ensures the specified capacity is reserved.
|
ByteBuffer |
ByteBuffer.reserveSpace(int space)
Reserves additional space in the storage.
|
ByteBuffer |
ByteBuffer.resize(int newSize)
Resizes data size in byte buffer.
|
ByteBuffer |
ByteBuffer.reverse()
Reverses data in the byte buffer.
|
ByteBuffer |
ByteBuffer.reverse(int startIdx)
Reverses data in byte buffer from the specified start index.
|
ByteBuffer |
ByteBuffer.reverse(int startIdx,
int endIdx)
Reverses the specified range of data in byte buffer.
|
ByteBuffer |
ByteBuffer.subBuffer(int offset)
Creates a new byte buffer from the specified offset.
|
ByteBuffer |
ByteBuffer.subBuffer(int offset,
int length)
Creates a new byte buffer from the specified offset and with the specified length.
|
ByteBuffer |
ByteBuffer.write(OutputStream outputStream)
Writes the data from the byte buffer into specified output stream.
|
Modifier and Type | Method and Description |
---|---|
ByteBuffer |
ByteBuffer.append(ByteBuffer byteBuffer)
Appends bytes taken from specified byte buffer.
|
int |
ByteBuffer.compareTo(ByteBuffer o) |
ByteBuffer |
ByteBuffer.insert(ByteBuffer buffer,
int startPsn)
Inserts the content of the buffer at the specified position.
|
ByteBuffer |
ByteBuffer.overwrite(ByteBuffer byteBuffer)
Overwrites data.
|
void |
File.write(ByteBuffer value) |
Constructor and Description |
---|
ByteBuffer(ByteBuffer byteBuffer)
Copy constructor.
|
ByteBuffer(ByteBuffer byteBuffer,
int length)
Copy constructor with specified length of bytes to be copied.
|
ByteBuffer(ByteBuffer buffer,
int offset,
int length)
Copy constructor with specified offset and length of bytes to be copied.
|
Copyright © 2005–2024 Onix Solutions. All rights reserved.