| Package | Description |
|---|---|
| net.openhft.chronicle.wire | |
| net.openhft.chronicle.wire.domestic | |
| net.openhft.chronicle.wire.domestic.reduction | |
| net.openhft.chronicle.wire.domestic.stream |
| Modifier and Type | Interface and Description |
|---|---|
interface |
Wire
Defines the standard interface for sequentially writing to and reading from a Bytes stream.
|
interface |
WireIn
Defines the standard interface for reading sequentially from 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 |
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.
|
| Constructor and Description |
|---|
AbstractGeneratedMethodReader(MarshallableIn in,
WireParselet debugLoggingParselet)
Creates a reader for the supplied input.
|
VanillaMethodReader(MarshallableIn in,
boolean ignoreDefault,
WireParselet defaultParselet,
FieldNumberParselet fieldNumberParselet,
net.openhft.chronicle.bytes.MethodReaderInterceptorReturns methodReaderInterceptorReturns,
Object... handlers)
Convenience constructor used by generated code.
|
VanillaMethodReader(MarshallableIn in,
boolean ignoreDefault,
WireParselet defaultParselet,
FieldNumberParselet fieldNumberParselet,
net.openhft.chronicle.bytes.MethodReaderInterceptorReturns methodReaderInterceptorReturns,
Object[] metadataHandlers,
Object... handlers)
Constructor that defaults the predicate to always true.
|
VanillaMethodReader(MarshallableIn in,
boolean ignoreDefault,
WireParselet defaultParselet,
FieldNumberParselet fieldNumberParselet,
net.openhft.chronicle.bytes.MethodReaderInterceptorReturns methodReaderInterceptorReturns,
Object[] metadataHandlers,
Predicate<net.openhft.chronicle.bytes.MethodReader> predicate,
Object... handlers)
Primary constructor configuring parsers and interceptors.
|
VanillaMethodReader(MarshallableIn in,
boolean ignoreDefault,
WireParselet defaultParselet,
net.openhft.chronicle.bytes.MethodReaderInterceptorReturns methodReaderInterceptorReturns,
Object[] metadataHandlers,
Object... handlers)
Convenience constructor used by generated code.
|
VanillaMethodReaderBuilder(MarshallableIn in)
Constructs a new
VanillaMethodReaderBuilder with the specified wire input. |
| Modifier and Type | Method and Description |
|---|---|
static long |
AutoTailers.replayOnto(@NotNull MarshallableIn tailer,
@NotNull ExcerptListener excerptListener) |
| Modifier and Type | Method and Description |
|---|---|
default long |
Reduction.accept(@NotNull MarshallableIn tailer)
Accepts the input of the provided
tailer and reduces (folds) the contents of it
into this Reduction returning the last seen index or -1 if no index was seen. |
| Modifier and Type | Method and Description |
|---|---|
static <T> @NotNull Iterator<T> |
Streams.iterator(@NotNull MarshallableIn documentProvider,
@NotNull DocumentExtractor<T> extractor)
Creates and returns a new
Iterator whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider. |
static PrimitiveIterator.OfDouble |
Streams.iteratorOfDouble(@NotNull MarshallableIn documentProvider,
@NotNull ToDoubleDocumentExtractor extractor)
Creates and returns a new
PrimitiveIterator.OfDouble whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider. |
static PrimitiveIterator.OfLong |
Streams.iteratorOfLong(@NotNull MarshallableIn documentProvider,
@NotNull ToLongDocumentExtractor extractor)
Creates and returns a new
PrimitiveIterator.OfLong whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider. |
static <T> @NotNull Stream<T> |
Streams.of(@NotNull MarshallableIn documentProvider,
@NotNull DocumentExtractor<T> extractor)
Creates and returns a new sequential ordered
Stream whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider. |
static @NotNull DoubleStream |
Streams.ofDouble(@NotNull MarshallableIn documentProvider,
@NotNull ToDoubleDocumentExtractor extractor)
Creates and returns a new sequential ordered
DoubleStream whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider. |
static @NotNull LongStream |
Streams.ofLong(@NotNull MarshallableIn documentProvider,
@NotNull ToLongDocumentExtractor extractor)
Creates and returns a new sequential ordered
LongStream whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider. |
static <T> @NotNull Spliterator<T> |
Streams.spliterator(@NotNull MarshallableIn documentProvider,
@NotNull DocumentExtractor<T> extractor)
Creates and returns a new ordered
Spliterator whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider, with no initial size estimate. |
static Spliterator.OfDouble |
Streams.spliteratorOfDouble(@NotNull MarshallableIn documentProvider,
@NotNull ToDoubleDocumentExtractor extractor)
Creates and returns a new ordered
Spliterator.OfDouble whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider, with no initial size estimate. |
static Spliterator.OfLong |
Streams.spliteratorOfLong(@NotNull MarshallableIn documentProvider,
@NotNull ToLongDocumentExtractor extractor)
Creates and returns a new ordered
Spliterator.OfLong whose elements are obtained
by successively applying the provided extractor on excerpts from the
provided documentProvider, with no initial size estimate. |
Copyright © 2026 Chronicle Software Ltd. All rights reserved.