Package | Description |
---|---|
net.openhft.chronicle.wire |
Modifier and Type | Interface and Description |
---|---|
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
Created by peter.lawrey on 15/01/15.
|
class |
QueryWire
Created by peter.lawrey on 15/01/15.
|
class |
RawWire
Created by peter.lawrey on 19/01/15.
|
class |
TextWire
Created by peter.lawrey on 15/01/15.
|
Modifier and Type | Method and Description |
---|---|
WireOut |
BinaryWire.addPadding(int paddingToAdd) |
WireOut |
RawWire.addPadding(int paddingToAdd) |
WireOut |
QueryWire.addPadding(int paddingToAdd) |
WireOut |
TextWire.addPadding(int paddingToAdd) |
WireOut |
WireOut.addPadding(int paddingToAdd) |
WireOut |
ValueOut.bool(Boolean flag) |
WireOut |
ValueOut.bytes(byte[] fromBytes) |
WireOut |
ValueOut.bytes(net.openhft.chronicle.bytes.BytesStore fromBytes) |
WireOut |
ValueOut.date(java.time.LocalDate localDate) |
WireOut |
ValueOut.float32(float f) |
WireOut |
ValueOut.float64(double d) |
default WireOut |
ValueOut.int16(long x) |
WireOut |
ValueOut.int16(short i16) |
WireOut |
ValueOut.int32(int i32) |
default WireOut |
ValueOut.int32(long x) |
WireOut |
ValueOut.int32forBinding(int value) |
WireOut |
ValueOut.int32forBinding(int value,
net.openhft.chronicle.core.values.IntValue intValue) |
WireOut |
ValueOut.int64(long i64) |
WireOut |
ValueOut.int64array(long capacity) |
WireOut |
ValueOut.int64array(long capacity,
net.openhft.chronicle.core.values.LongArrayValues values) |
WireOut |
ValueOut.int64forBinding(long value) |
WireOut |
ValueOut.int64forBinding(long value,
net.openhft.chronicle.core.values.LongValue longValue) |
WireOut |
ValueOut.int8(byte i8) |
default WireOut |
ValueOut.int8(long x) |
WireOut |
ValueOut.map(Map map)
wites the contents of the map to wire
|
WireOut |
ValueOut.marshallable(WriteMarshallable object) |
default WireOut |
ValueOut.object(Object value) |
WireOut |
ValueOut.rawBytes(byte[] value) |
WireOut |
ValueOut.sequence(java.util.function.Consumer<ValueOut> writer) |
WireOut |
ValueOut.text(CharSequence s) |
default WireOut |
ValueOut.throwable(Throwable t) |
WireOut |
ValueOut.time(java.time.LocalTime localTime) |
WireOut |
ValueOut.typedMap(Map<? extends WriteMarshallable,? extends Marshallable> map) |
default WireOut |
ValueOut.typedMarshallable(CharSequence typeName,
WriteMarshallable object) |
default WireOut |
ValueOut.typedMarshallable(WriteMarshallable object) |
default WireOut |
ValueOut.typedScalar(Object value) |
WireOut |
ValueOut.typeLiteral(java.util.function.BiConsumer<Class,net.openhft.chronicle.bytes.Bytes> typeTranslator,
Class type) |
WireOut |
ValueOut.typeLiteral(CharSequence type) |
default WireOut |
ValueOut.typeLiteral(Class type) |
default WireOut |
ValueOut.uint16(long x) |
WireOut |
ValueOut.uint16checked(int u16) |
default WireOut |
ValueOut.uint32(long x) |
WireOut |
ValueOut.uint32checked(long u32) |
default WireOut |
ValueOut.uint8(int x) |
WireOut |
ValueOut.uint8checked(int u8) |
WireOut |
ValueOut.utf8(int codepoint) |
WireOut |
ValueOut.uuid(UUID uuid) |
WireOut |
ValueOut.wireOut() |
default WireOut |
WireOut.writeAlignTo(int alignment) |
WireOut |
WireOut.writeComment(CharSequence s) |
WireOut |
ValueOut.zonedDateTime(java.time.ZonedDateTime zonedDateTime) |
Modifier and Type | Method and Description |
---|---|
void |
BinaryWire.copyTo(WireOut wire) |
void |
RawWire.copyTo(WireOut wire) |
void |
QueryWire.copyTo(WireOut wire) |
void |
TextWire.copyTo(WireOut wire) |
void |
WireIn.copyTo(WireOut wire) |
static void |
Wires.writeData(WireOut wireOut,
boolean metaData,
boolean notReady,
java.util.function.Consumer<WireOut> writer) |
void |
WriteMarshallable.writeMarshallable(WireOut wire)
Write data to the wire
|
Modifier and Type | Method and Description |
---|---|
static void |
Wires.writeData(WireOut wireOut,
boolean metaData,
boolean notReady,
java.util.function.Consumer<WireOut> writer) |
default void |
WireOut.writeDocument(boolean metaData,
java.util.function.Consumer<WireOut> writer) |
default void |
WireOut.writeNotReadyDocument(boolean metaData,
java.util.function.Consumer<WireOut> writer) |
Copyright © 2015. All rights reserved.