| 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 |
|---|---|
void |
BytesMarshaller.writeMarshallable(WriteBytesMarshallable t,
BytesOut<?> out)
Writes the state of the given WriteBytesMarshallable object to the specified BytesOut.
|
static void |
BytesUtil.writeMarshallable(@NotNull WriteBytesMarshallable marshallable,
BytesOut<?> bytes)
Writes a Marshallable object to a BytesOut object.
|
void |
HexDumpBytes.writeMarshallableLength16(@NotNull WriteBytesMarshallable marshallable) |
void |
BytesOut.writeMarshallableLength16(WriteBytesMarshallable marshallable)
Writes a
WriteBytesMarshallable to this BytesOut instance. |
default void |
Bytes.writeMarshallableLength16(@NotNull WriteBytesMarshallable marshallable)
Writes the content of the provided
marshallable into this Bytes object, including a 16-bit length indicator
preceding the actual object data. |
| 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 © 2023. All rights reserved.