| Package | Description |
|---|---|
| net.openhft.chronicle.wire |
| Modifier and Type | Interface and Description |
|---|---|
interface |
InternalWireIn
These methods are for internal use only.
|
interface |
Wire
The defines the stand interface for writing and reading sequentially to/from a Bytes stream.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BinaryWire
This Wire is a binary translation of TextWire which is a sub set of YAML.
|
class |
JSONWire
JSON wire format
|
class |
QueryWire
THis wire decodes URL query strings.
|
class |
RawWire
This format writes just the data, without meta data.
|
class |
TextWire
YAML Based wire format
|
| Modifier and Type | Method and Description |
|---|---|
default <E extends Enum<E>> |
ValueIn.asEnum(Class<E> eClass,
java.util.function.Consumer<E> eConsumer) |
WireIn |
ValueIn.bool(BooleanConsumer flag) |
WireIn |
ValueIn.bytes(net.openhft.chronicle.bytes.Bytes<?> toBytes) |
WireIn |
ValueIn.bytes(ReadMarshallable wireInConsumer) |
WireIn |
ValueIn.bytesMatch(net.openhft.chronicle.bytes.BytesStore compareBytes,
BooleanConsumer consumer) |
WireIn |
ValueIn.date(java.util.function.Consumer<java.time.LocalDate> localDate) |
WireIn |
ValueIn.float32(FloatConsumer v) |
WireIn |
ValueIn.float64(java.util.function.DoubleConsumer v) |
WireIn |
ValueIn.int16(ShortConsumer i) |
WireIn |
ValueIn.int32(java.util.function.IntConsumer i) |
WireIn |
ValueIn.int32(net.openhft.chronicle.core.values.IntValue value,
java.util.function.Consumer<net.openhft.chronicle.core.values.IntValue> setter) |
WireIn |
ValueIn.int64(java.util.function.LongConsumer i) |
WireIn |
ValueIn.int64(net.openhft.chronicle.core.values.LongValue value) |
WireIn |
ValueIn.int64(net.openhft.chronicle.core.values.LongValue value,
java.util.function.Consumer<net.openhft.chronicle.core.values.LongValue> setter) |
WireIn |
ValueIn.int64array(net.openhft.chronicle.core.values.LongArrayValues values,
java.util.function.Consumer<net.openhft.chronicle.core.values.LongArrayValues> setter) |
WireIn |
ValueIn.int8(ByteConsumer i) |
WireIn |
ValueIn.marshallable(ReadMarshallable object) |
<E> WireIn |
ValueIn.object(Class<E> clazz,
java.util.function.Consumer<E> e) |
WireIn |
RawWire.readAlignTo(int alignment) |
default WireIn |
WireIn.readAlignTo(int alignment) |
WireIn |
ValueIn.sequence(java.util.function.Consumer<ValueIn> reader) |
default WireIn |
ValueIn.text(net.openhft.chronicle.bytes.Bytes sdo) |
default WireIn |
ValueIn.text(java.util.function.Consumer<String> s) |
default WireIn |
ValueIn.text(StringBuilder sb) |
WireIn |
ValueIn.time(java.util.function.Consumer<java.time.LocalTime> localTime) |
WireIn |
ValueIn.type(StringBuilder s) |
default WireIn |
ValueIn.typeLiteral(java.util.function.Consumer<Class> classConsumer) |
default WireIn |
ValueIn.typeLiteral(java.util.function.Function<CharSequence,Class> typeLookup,
java.util.function.Consumer<Class> classConsumer) |
WireIn |
ValueIn.typeLiteralAsText(java.util.function.Consumer<CharSequence> classNameConsumer) |
WireIn |
ValueIn.uint16(java.util.function.IntConsumer i) |
WireIn |
ValueIn.uint32(java.util.function.LongConsumer i) |
WireIn |
ValueIn.uint8(ShortConsumer i) |
WireIn |
ValueIn.uuid(java.util.function.Consumer<UUID> uuid) |
WireIn |
ValueIn.wireIn() |
WireIn |
ValueIn.zonedDateTime(java.util.function.Consumer<java.time.ZonedDateTime> zonedDateTime) |
| Modifier and Type | Method and Description |
|---|---|
default void |
WireParser.parse(WireIn wireIn) |
static void |
Wires.rawReadData(WireIn wireIn,
ReadMarshallable dataConsumer) |
static boolean |
Wires.readData(long offset,
WireIn wireIn,
ReadMarshallable metaDataConsumer,
ReadMarshallable dataConsumer) |
static boolean |
Wires.readData(WireIn wireIn,
ReadMarshallable metaDataConsumer,
ReadMarshallable dataConsumer) |
void |
WireSerializedLambda.readMarshallable(WireIn wire) |
void |
ReadMarshallable.readMarshallable(WireIn wire)
Straight line ordered decoding.
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
ValueIn.applyToMarshallable(java.util.function.Function<WireIn,T> marshallableReader) |
Copyright © 2015. All rights reserved.