| Package | Description |
|---|---|
| net.openhft.chronicle.wire | |
| net.openhft.chronicle.wire.channel |
Provides classes and interfaces for managing Chronicle communication channels and their operations.
|
| 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
Represents a binary translation of TextWire, which is a subset of YAML.
|
class |
CSVWire
Represents a CSV (Comma Separated Values) based wire format.
|
class |
HashWire
The
HashWire class is responsible for generating hash values from provided objects or WriteMarshallable instances. |
class |
JSONWire
Represents the JSON wire format.
|
class |
QueryWire
This class represents a wire format designed to decode URL query strings.
|
class |
RawWire
Represents a wire type that focuses on writing pure data, omitting any metadata.
|
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)
Sets the
MarshallableOut instance to be used by the builder. |
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)
Constructor that initializes the handler using the given class, metadata flag and a supplier of MarshallableOut.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ChronicleChannel
Deprecated.
|
interface |
InternalChronicleChannel
The InternalChronicleChannel interface extends the ChronicleChannel interface and provides
additional methods that support advanced functionalities within Chronicle Channels.
|
Copyright © 2024. All rights reserved.