| Package | Description |
|---|---|
| net.openhft.chronicle.wire |
| Modifier and Type | Interface and Description |
|---|---|
interface |
Wire
Defines the standard interface for sequentially writing to and reading from a Bytes stream.
|
interface |
WireOut
Defines the standard interface for sequential writing to a Bytes stream.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractAnyWire
An abstract representation of a wire type that could be either
TextWire or BinaryWire. |
class |
AbstractWire
Represents the AbstractWire class which serves as a base for all Wire implementations.
|
class |
BinaryWire
Primary implementation of the binary wire format.
|
class |
CSVWire
Text based wire format for Comma Separated Values (CSV).
|
class |
HashWire
A specialised
WireOut used only for hashing. |
class |
JSONWire
Represents the JSON wire format for text-based marshalling and parsing.
|
class |
QueryWire
Parses a URL query string such as
"a=1&b=2". |
class |
RawWire
Wire implementation that serialises values in sequence without any field names.
|
class |
ReadAnyWire
Represents a wire type that can be either
TextWire or BinaryWire. |
class |
TextWire
A representation of the YAML-based wire format.
|
class |
YamlWire
Represents a YAML-based wire format designed for efficient parsing and serialization of data.
|
class |
YamlWireOut<T extends YamlWireOut<T>>
Provides functionality for writing data in a YAML-based wire format.
|
| Modifier and Type | Method and Description |
|---|---|
MarshallableOut |
MarshallableOutBuilder.get() |
| Modifier and Type | Method and Description |
|---|---|
static DocumentContext |
GenerateMethodWriter.acquireDocumentContext(boolean metaData,
ThreadLocal<DocumentContextHolder> documentContextTL,
MarshallableOut out)
Acquires a
DocumentContext instance, either by reusing the existing one from the thread-local
context holder if it's not closed or by creating a new one using the provided output. |
net.openhft.chronicle.bytes.MethodWriterBuilder<T> |
VanillaMethodWriterBuilder.marshallableOut(@NotNull MarshallableOut out)
Sends method calls to the given
MarshallableOut. |
void |
MethodWriter.marshallableOut(MarshallableOut out)
Transforms or serializes the internal state of the implementer to the provided
MarshallableOut instance. |
| Constructor and Description |
|---|
BinaryMethodWriterInvocationHandler(Class<?> tClass,
boolean metaData,
Supplier<MarshallableOut> marshallableOutSupplier)
Create a handler using the given class, metadata flag and a supplier of MarshallableOut.
|
Copyright © 2026 Chronicle Software Ltd. All rights reserved.