| Class and Description |
|---|
| AbstractBytes
Provides a base implementation of
Bytes with cursor management,
optional bounds checking and default text formatting support. |
| AppendableUtil |
| Byteable
Allows a Java object to view a slice of a
BytesStore. |
| Bytes
Mutable buffer for raw byte data with separate 63-bit read and write cursors.
|
| BytesConsumer
Consumes bytes from a source and writes them to a
BytesOut instance. |
| BytesIn
Reads data from a byte stream or buffer.
|
| BytesMarshaller
Reflection-based marshaller for simple objects.
|
| BytesMethodReader
Concrete
MethodReader that reads method calls serialised in a binary
format from a BytesIn stream and dispatches them to target objects. |
| BytesMethodReaderBuilder
Builder for
BytesMethodReader instances. |
| BytesMethodWriterInvocationHandler
An
InvocationHandler for method writers operating
on BytesOut. |
| BytesOut
Output interface for writing to a
Bytes buffer. |
| BytesParselet
Parses messages read from a
BytesIn when no specific method handler
is available. |
| BytesPrepender
Supports writing data before the current
RandomCommon.readPosition(). |
| BytesRingBuffer
Represents a ring buffer for
Bytes data, intended for
high-throughput, low-latency messaging between threads or services. |
| BytesRingBufferStats
This interface provides statistics about a
BytesRingBuffer. |
| BytesStore
Reference to a fixed-capacity region of memory.
|
| BytesTextMethodTester
Utility for exercising an interface backed by
Bytes using a textual description of the
method calls. |
| ByteStringAppender
Extension of
StreamingDataOutput and Appendable that exposes
convenience methods for writing text and numbers to a Bytes stream. |
| ByteStringParser
Extends
StreamingDataInput with helpers for parsing textual data directly from a
Bytes stream. |
| BytesUtil
Collection of helper methods dealing with
Bytes, BytesStore and low level byte
manipulation. |
| CommonMarshallable
Marker for objects that can be serialised to bytes.
|
DistributedUniqueTimeProvider
TimeProvider implementation producing timestamps that remain unique across JVMs by embedding
a host identifier in the lower bits. |
HexDumpBytes
Bytes implementation that records all writes and produces a formatted hexadecimal dump of the data. |
| HexDumpBytesDescription
Provides hooks for adding comments and controlling indentation when generating hex dumps.
|
| Invocation
A functional interface representing the act of invoking a method.
|
| MappedBytes
A specialised
Bytes implementation backed by a memory-mapped file. |
MappedBytesStore
NativeBytesStore backed by a region of a memory-mapped file. |
| MappedBytesStoreFactory
Factory for creating
MappedBytesStore instances. |
| MappedFile
Manages a memory-mapped file and creates
MappedBytesStore views over it. |
MappedUniqueTimeProvider
TimeProvider that yields monotonically increasing timestamps shared
between JVM processes by using a memory-mapped file. |
| MethodEncoder
Interface defining the required operations for a method encoder.
|
| MethodEncoderLookup
Enum singleton that implements Function interface to lookup and return a
MethodEncoder for a given method. |
| MethodReader
Interface defining the required operations for a method reader.
|
| MethodReaderBuilder
Interface for a builder that constructs instances of MethodReader.
|
| MethodReaderInterceptorReturns
Functional interface representing an interceptor for methods invoked through a MethodReader.
|
| MethodWriterBuilder
Interface for creating a builder that will generate a MethodWriter instance of a specific type.
|
| MultiReaderBytesRingBuffer
Extension of the BytesRingBuffer interface that supports multiple readers.
|
NativeBytes
VanillaBytes backed by native (off heap) memory or a direct
ByteBuffer. |
| NewChunkListener
Listener notified when a new chunk is allocated by a
MappedFile. |
| OffsetFormat
Strategy for formatting offsets when dumping bytes.
|
OnHeapBytes
VanillaBytes backed by an on heap byte[]. |
PointerBytesStore
NativeBytesStore providing a view over externally managed memory. |
| RandomCommon
A foundational interface for random access to a byte sequence or buffer.
|
| RandomDataInput
The
RandomDataInput class provides a series of methods for reading data
from various types of inputs. |
| RandomDataOutput
Provides methods for writing data to a byte sequence or buffer at arbitrary offsets.
|
| ReadBytesMarshallable
Functional interface to facilitate the reading of data directly as Bytes.
|
| RingBufferReader
An interface for a reader on a Ring Buffer, providing methods to read and navigate through the buffer.
|
| RingBufferReaderStats
An interface to provide statistics about a
RingBufferReader's reading operations. |
| StopCharsTester
A functional interface that defines a strategy for identifying stop characters during a string parsing operation.
|
| StopCharTester
A functional interface for defining a strategy to identify stop characters during string parsing.
|
| StopCharTesters
A collection of predefined
StopCharTester implementations that define common stop character criteria. |
| StreamingCommon
A common base interface for streaming data access.
|
| StreamingDataInput
Provides sequential, cursor based reading of binary and textual data from a
stream or buffer.
|
| StreamingDataOutput
Provides sequential, cursor based writing of binary and textual data to a
stream or buffer.
|
| StreamingInputStream
An
InputStream adapter that sources its data from a
StreamingDataInput. |
| StreamingOutputStream
An
OutputStream adapter that writes its bytes to a
StreamingDataOutput. |
| SyncMode
Synchronisation options for memory mapped file updates, mirroring the
behaviour of
msync(2). |
| UncheckedNativeBytes
Provides unchecked access to a native
BytesStore. |
| UpdateInterceptor
Represents an operation that intercepts a method call, possibly modifies the input argument,
and determines whether to proceed with the original operation.
|
| UTFDataFormatRuntimeException
Thrown to indicate a failure when encoding or decoding UTF-8 data.
|
| VanillaBytes
Base implementation of
Bytes backed by a fixed-capacity
BytesStore. |
| WriteBytesMarshallable
Functional interface for objects that can serialise their state directly to a
BytesOut stream. |
| Class and Description |
|---|
| BytesStore
Reference to a fixed-capacity region of memory.
|
| Class and Description |
|---|
| BytesStore
Reference to a fixed-capacity region of memory.
|
| RandomCommon
A foundational interface for random access to a byte sequence or buffer.
|
| RandomDataInput
The
RandomDataInput class provides a series of methods for reading data
from various types of inputs. |
| RandomDataOutput
Provides methods for writing data to a byte sequence or buffer at arbitrary offsets.
|
| Class and Description |
|---|
| Bytes
Mutable buffer for raw byte data with separate 63-bit read and write cursors.
|
| Class and Description |
|---|
| Byteable
Allows a Java object to view a slice of a
BytesStore. |
| Bytes
Mutable buffer for raw byte data with separate 63-bit read and write cursors.
|
| BytesIn
Reads data from a byte stream or buffer.
|
| BytesMarshallable
Serialisable object that reads and writes its state directly to a
Bytes stream. |
| BytesOut
Output interface for writing to a
Bytes buffer. |
| BytesStore
Reference to a fixed-capacity region of memory.
|
| CommonMarshallable
Marker for objects that can be serialised to bytes.
|
| DynamicallySized
Marker for
Byteable objects whose encoded length may vary with their state. |
| ReadBytesMarshallable
Functional interface to facilitate the reading of data directly as Bytes.
|
| WriteBytesMarshallable
Functional interface for objects that can serialise their state directly to a
BytesOut stream. |
| Class and Description |
|---|
| Bytes
Mutable buffer for raw byte data with separate 63-bit read and write cursors.
|
| BytesIn
Reads data from a byte stream or buffer.
|
| BytesOut
Output interface for writing to a
Bytes buffer. |
| BytesStore
Reference to a fixed-capacity region of memory.
|
| StopCharsTester
A functional interface that defines a strategy for identifying stop characters during a string parsing operation.
|
| StopCharTester
A functional interface for defining a strategy to identify stop characters during string parsing.
|
| UTFDataFormatRuntimeException
Thrown to indicate a failure when encoding or decoding UTF-8 data.
|
Copyright © 2026 Chronicle Software Ltd. All rights reserved.