| Package | Description |
|---|---|
| net.openhft.chronicle.wire |
| Modifier and Type | Class and Description |
|---|---|
class |
MethodWireKey
The
MethodWireKey class represents a key within a wire format, extending the
BytesInBinaryMarshallable class and implementing the WireKey interface. |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
WireKey.checkKeys(@NotNull WireKey[] keys)
Checks that each entry uses a distinct
code() value. |
@NotNull ValueIn |
BinaryWire.read(@NotNull WireKey key)
Look up a value using a
WireKey. |
@NotNull ValueIn |
RawWire.read(@NotNull WireKey key)
Returns the input for the next value.
|
@NotNull ValueIn |
WireIn.read(@NotNull WireKey key)
Reads the next field if present.
|
@NotNull ValueIn |
CSVWire.read(@NotNull WireKey key)
Keys are not used when reading CSV so this simply returns
TextWire.valueIn. |
@NotNull ValueIn |
TextWire.read(@NotNull WireKey key) |
@NotNull ValueIn |
YamlWire.read(@NotNull WireKey key) |
@NotNull ValueIn |
AbstractAnyWire.read(@NotNull WireKey key) |
default @NotNull VanillaWireParser |
WireParser.register(WireKey key,
WireParselet valueInConsumer)
Registers a
WireParselet to handle fields matching the supplied
WireKey. |
@NotNull VanillaWireParser |
VanillaWireParser.register(@NotNull WireKey key,
WireParselet valueInConsumer)
Registers
valueInConsumer for both the text and numeric forms of
key. |
default @NotNull VanillaWireParser |
WireParser.registerOnce(WireKey key,
WireParselet valueInConsumer)
Attempts to register a new
WireParselet for the supplied key. |
@NotNull ValueOut |
BinaryWire.write(@NotNull WireKey key) |
@NotNull ValueOut |
RawWire.write(@NotNull WireKey key)
Returns the output for the next value.
|
@NotNull ValueOut |
YamlWireOut.write(@NotNull WireKey key) |
@NotNull ValueOut |
QueryWire.write(@NotNull WireKey key)
Starts a query parameter using the supplied key.
|
@NotNull ValueOut |
WireOut.write(WireKey key)
Writes a WireKey to the stream.
|
@NotNull ValueOut |
AbstractAnyWire.write(WireKey key) |
@NotNull ValueOut |
HashWire.write(@NotNull WireKey key) |
@NotNull ValueOut |
BinaryWire.writeEventName(@NotNull WireKey key) |
@NotNull ValueOut |
RawWire.writeEventName(@NotNull WireKey key)
Prepares to write an event name.
|
default @NotNull ValueOut |
WireOut.writeEventName(WireKey key)
Writes a key to the stream.
|
default void |
MarshallableOut.writeMessage(WireKey key,
Object value)
Write a key and value which could be a scalar or a marshallable.
|
Copyright © 2026 Chronicle Software Ltd. All rights reserved.