| 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 |
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 |
TextWire.addPadding(int paddingToAdd) |
WireOut |
WireOut.addPadding(int paddingToAdd) |
WireOut |
BinaryWire.addPadding(int paddingToAdd) |
WireOut |
WrappedWire.addPadding(int paddingToAdd) |
WireOut |
RawWire.addPadding(int paddingToAdd) |
WireOut |
ValueOut.bool(Boolean flag) |
WireOut |
ValueOut.bytes(byte[] fromBytes) |
WireOut |
ValueOut.bytes(net.openhft.chronicle.bytes.Bytes 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.int64(long i64) |
WireOut |
ValueOut.int64array(long capacity) |
WireOut |
ValueOut.int64forBinding(long readReady) |
WireOut |
ValueOut.int8(byte i8) |
default WireOut |
ValueOut.int8(long x) |
WireOut |
ValueOut.marshallable(WriteMarshallable object) |
WireOut |
ValueOut.nested(boolean nested) |
WireOut |
ValueOut.sequence(java.util.function.Consumer<ValueOut> writer) |
WireOut |
ValueOut.text(CharSequence s) |
protected abstract WireOut |
WrappedWire.thisWireOut() |
WireOut |
ValueOut.time(java.time.LocalTime localTime) |
WireOut |
ValueOut.type(CharSequence typeName) |
default WireOut |
ValueOut.typedMarshallable(Marshallable object) |
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(long x) |
WireOut |
ValueOut.uint8checked(int u8) |
WireOut |
ValueOut.utf8(int codepoint) |
WireOut |
ValueOut.uuid(UUID uuid) |
WireOut |
WireOut.writeComment(CharSequence s) |
WireOut |
WrappedWire.writeComment(CharSequence s) |
WireOut |
ValueOut.zonedDateTime(java.time.ZonedDateTime zonedDateTime) |
| Modifier and Type | Method and Description |
|---|---|
void |
TextWire.copyTo(WireOut wire) |
void |
BinaryWire.copyTo(WireOut wire) |
void |
WrappedWire.copyTo(WireOut wire) |
void |
WireIn.copyTo(WireOut wire) |
void |
RawWire.copyTo(WireOut wire) |
static void |
Wires.writeData(WireOut wireOut,
boolean metaData,
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,
java.util.function.Consumer<WireOut> writer) |
default void |
WireOut.writeDocument(boolean metaData,
java.util.function.Consumer<WireOut> writer) |
Copyright © 2015. All rights reserved.