| Package | Description |
|---|---|
| net.openhft.chronicle.bytes |
The Chronicle Bytes package provides low-level memory access wrappers with functionalities
akin to Java NIO's ByteBuffer.
|
| net.openhft.chronicle.bytes.ref |
Provides classes and interfaces for handling references to arrays of
various primitive types with byte representation.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
BytesMarshallable
An interface for objects that can be read from and written to bytes in a streaming manner.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends ReadBytesMarshallable> |
BytesIn.readMarshallableLength16(@NotNull Class<T> tClass,
T using)
Reads a Marshallable object of a specific class from this BytesIn.
|
<T extends ReadBytesMarshallable> |
HexDumpBytes.readMarshallableLength16(@NotNull Class<T> clazz,
T using) |
default <T extends ReadBytesMarshallable> |
Bytes.readMarshallableLength16(@NotNull Class<T> clazz,
T using)
Reads the content of this Bytes object and converts it into an instance of the specified class.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BytesMarshaller.readMarshallable(ReadBytesMarshallable t,
BytesIn<?> in)
Reads the state of the given ReadBytesMarshallable object from the specified BytesIn.
|
static void |
BytesUtil.readMarshallable(@NotNull ReadBytesMarshallable marshallable,
BytesIn<?> bytes)
Reads a Marshallable object from a BytesIn object.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BinaryIntArrayReference
Represents a binary array of integers, backed by a
BytesStore. |
class |
BinaryLongArrayReference
Represents a binary array of 64-bit long values backed by a
BytesStore. |
Copyright © 2024. All rights reserved.