| Package | Description |
|---|---|
| net.openhft.chronicle.bytes | |
| net.openhft.chronicle.bytes.internal |
| Modifier and Type | Interface and Description |
|---|---|
interface |
Bytes<U>
Mutable buffer for raw byte data with separate 63-bit read and write cursors.
|
interface |
BytesIn<U>
Reads data from a byte stream or buffer.
|
interface |
BytesOut<U>
Output interface for writing to a
Bytes buffer. |
interface |
BytesStore<B extends BytesStore<B,U>,U>
Reference to a fixed-capacity region of memory.
|
interface |
ByteStringAppender<B extends ByteStringAppender<B>>
Extension of
StreamingDataOutput and Appendable that exposes
convenience methods for writing text and numbers to a Bytes stream. |
interface |
ByteStringParser<B extends ByteStringParser<B>>
Extends
StreamingDataInput with helpers for parsing textual data directly from a
Bytes stream. |
interface |
RandomDataInput
The
RandomDataInput class provides a series of methods for reading data
from various types of inputs. |
interface |
RandomDataOutput<R extends RandomDataOutput<R>>
Provides methods for writing data to a byte sequence or buffer at arbitrary offsets.
|
interface |
StreamingCommon<S extends StreamingCommon<S>>
A common base interface for streaming data access.
|
interface |
StreamingDataInput<S extends StreamingDataInput<S>>
Provides sequential, cursor based reading of binary and textual data from a
stream or buffer.
|
interface |
StreamingDataOutput<S extends StreamingDataOutput<S>>
Provides sequential, cursor based writing of binary and textual data to a
stream or buffer.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractBytes<U>
Provides a base implementation of
Bytes with cursor management,
optional bounds checking and default text formatting support. |
class |
GuardedNativeBytes<U>
Debugging wrapper that prefixes each primitive written with a type code and checks it on reads.
|
class |
HexDumpBytes
Bytes implementation that records all writes and produces a formatted hexadecimal dump of the data. |
class |
MappedBytes
A specialised
Bytes implementation backed by a memory-mapped file. |
class |
MappedBytesStore
NativeBytesStore backed by a region of a memory-mapped file. |
class |
NativeBytes<U>
VanillaBytes backed by native (off heap) memory or a direct
ByteBuffer. |
class |
OnHeapBytes
VanillaBytes backed by an on heap byte[]. |
class |
PointerBytesStore
NativeBytesStore providing a view over externally managed memory. |
class |
SubBytes<U>
Represents a fixed size view over a region of another
BytesStore. |
class |
UncheckedBytes<U>
A wrapper around another
Bytes instance that bypasses most bounds
checks on read and write operations. |
class |
UncheckedNativeBytes<U>
Provides unchecked access to a native
BytesStore. |
class |
VanillaBytes<U>
Base implementation of
Bytes backed by a fixed-capacity
BytesStore. |
| Modifier and Type | Class and Description |
|---|---|
class |
net.openhft.chronicle.bytes.internal.AbstractBytesStore<B extends BytesStore<B,U>,U>
An abstract base for
BytesStore
implementations. |
class |
net.openhft.chronicle.bytes.internal.NativeBytesStore<U>
A
BytesStore backed by off-heap native
memory. |
Copyright © 2026 Chronicle Software Ltd. All rights reserved.