| Package | Description |
|---|---|
| net.openhft.chronicle.wire | |
| net.openhft.chronicle.wire.channel |
Provides classes and interfaces for managing Chronicle communication channels and their operations.
|
| net.openhft.chronicle.wire.domestic |
This package and any and all sub-packages contains strictly internal classes reserved for Chronicle Software.
|
| 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
Represents a binary translation of TextWire, which is a subset of YAML.
|
class |
CSVWire
Represents a CSV (Comma Separated Values) based wire format.
|
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.
|
| Constructor and Description |
|---|
AbstractGeneratedMethodReader(MarshallableIn in,
WireParselet debugLoggingParselet)
Constructs a new AbstractGeneratedMethodReader with the provided input interface
and a debug logging parselet.
|
VanillaMethodReader(MarshallableIn in,
boolean ignoreDefault,
WireParselet defaultParselet,
FieldNumberParselet fieldNumberParselet,
net.openhft.chronicle.bytes.MethodReaderInterceptorReturns methodReaderInterceptorReturns,
Object... objects) |
VanillaMethodReader(MarshallableIn in,
boolean ignoreDefault,
WireParselet defaultParselet,
FieldNumberParselet fieldNumberParselet,
net.openhft.chronicle.bytes.MethodReaderInterceptorReturns methodReaderInterceptorReturns,
Object[] metaDataHandler,
Object... objects)
This constructor is an overloaded version of the primary VanillaMethodReader constructor.
|
VanillaMethodReader(MarshallableIn in,
boolean ignoreDefault,
WireParselet defaultParselet,
FieldNumberParselet fieldNumberParselet,
net.openhft.chronicle.bytes.MethodReaderInterceptorReturns methodReaderInterceptorReturns,
Object[] metaDataHandler,
Predicate<net.openhft.chronicle.bytes.MethodReader> predicate,
Object... objects)
This is the primary constructor for the VanillaMethodReader class.
|
VanillaMethodReader(MarshallableIn in,
boolean ignoreDefault,
WireParselet defaultParselet,
net.openhft.chronicle.bytes.MethodReaderInterceptorReturns methodReaderInterceptorReturns,
Object[] metaDataHandler,
Object... objects)
Constructor for creating an instance of VanillaMethodReader with specified parameters.
|
VanillaMethodReaderBuilder(MarshallableIn in)
Constructs a new
VanillaMethodReaderBuilder with the specified wire input. |
| 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.
|
| 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 © 2024. All rights reserved.