protected class BinaryWire.FixedBinaryValueOut extends Object implements ValueOut
SMALL_MESSAGE| Modifier | Constructor and Description |
|---|---|
protected |
FixedBinaryValueOut() |
| Modifier and Type | Method and Description |
|---|---|
WireOut |
bool(Boolean flag)
scalar data types
|
WireOut |
bytes(byte[] fromBytes) |
WireOut |
bytes(net.openhft.chronicle.bytes.BytesStore fromBytes) |
WireOut |
bytes(String type,
byte[] fromBytes) |
WireOut |
bytes(String type,
net.openhft.chronicle.bytes.BytesStore fromBytes) |
void |
bytes0(net.openhft.chronicle.bytes.BytesStore fromBytes,
long remaining) |
int |
compressedSize() |
WireOut |
date(java.time.LocalDate localDate) |
WireOut |
dateTime(java.time.LocalDateTime localDateTime) |
WireOut |
fixedFloat32(float f) |
WireOut |
fixedFloat64(double d) |
WireOut |
fixedInt16(short i16) |
WireOut |
fixedInt32(int i32) |
WireOut |
fixedInt64(long i64) |
WireOut |
fixedInt8(byte i8) |
WireOut |
fixedOrderedInt32(int i32) |
WireOut |
float32(float f) |
WireOut |
float64(double d) |
WireOut |
int16(short i16) |
WireOut |
int32(int i32) |
WireOut |
int32forBinding(int value) |
WireOut |
int32forBinding(int value,
net.openhft.chronicle.core.values.IntValue intValue) |
WireOut |
int64_0x(long i64) |
WireOut |
int64(long i64) |
WireOut |
int64array(long capacity) |
WireOut |
int64array(long capacity,
net.openhft.chronicle.core.values.LongArrayValues values) |
WireOut |
int64forBinding(long value) |
WireOut |
int64forBinding(long value,
net.openhft.chronicle.core.values.LongValue longValue) |
WireOut |
int8(byte i8) |
ValueOut |
leaf() |
WireOut |
map(Map map)
writes the contents of the map to wire
|
WireOut |
marshallable(Serializable object) |
WireOut |
marshallable(WriteMarshallable object) |
WireOut |
nu11() |
WireOut |
rawBytes(byte[] value) |
void |
resetState() |
<T> WireOut |
sequence(T t,
java.util.function.BiConsumer<T,ValueOut> writer) |
WireOut |
text(net.openhft.chronicle.bytes.BytesStore s) |
WireOut |
text(CharSequence s) |
WireOut |
text(String s) |
WireOut |
time(java.time.LocalTime localTime) |
WireOut |
typedMap(Map<? extends WriteMarshallable,? extends Marshallable> map) |
WireOut |
typeLiteral(java.util.function.BiConsumer<Class,net.openhft.chronicle.bytes.Bytes> typeTranslator,
Class type) |
WireOut |
typeLiteral(CharSequence type) |
WireOut |
typeLiteral(Class type) |
ValueOut |
typePrefix(CharSequence typeName) |
WireOut |
uint16checked(int u16) |
WireOut |
uint32checked(long u32) |
WireOut |
uint8checked(int u8) |
WireOut |
utf8(int codepoint) |
WireOut |
uuid(UUID uuid) |
WireOut |
wireOut() |
ValueOut |
writeLength(long length) |
WireOut |
zonedDateTime(java.time.ZonedDateTime zonedDateTime) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitarray, asEnum, collection, compress, compress, int16, int32, int32, int64, int8, leaf, list, list, marshallable, marshallable, object, object, sequence, sequence, set, set, throwable, typedMarshallable, typedMarshallable, typedMarshallable, typedScalar, typePrefix, uint16, uint32, uint8, untypedObject@NotNull public WireOut bool(@Nullable Boolean flag)
ValueOut@NotNull public WireOut text(@Nullable CharSequence s)
@NotNull public WireOut text(@Nullable net.openhft.chronicle.bytes.BytesStore s)
@NotNull public WireOut bytes(@Nullable net.openhft.chronicle.bytes.BytesStore fromBytes)
public int compressedSize()
compressedSize in interface ValueOutpublic void bytes0(@Nullable
net.openhft.chronicle.bytes.BytesStore fromBytes,
long remaining)
@NotNull public WireOut rawBytes(byte[] value)
@NotNull public ValueOut writeLength(long length)
writeLength in interface ValueOut@NotNull public WireOut bytes(@NotNull byte[] fromBytes)
@NotNull public WireOut bytes(String type, @Nullable net.openhft.chronicle.bytes.BytesStore fromBytes)
@NotNull public WireOut uint8checked(int u8)
uint8checked in interface ValueOut@NotNull public WireOut fixedInt16(short i16)
fixedInt16 in interface ValueOut@NotNull public WireOut uint16checked(int u16)
uint16checked in interface ValueOut@NotNull public WireOut fixedInt32(int i32)
fixedInt32 in interface ValueOut@NotNull public WireOut fixedOrderedInt32(int i32)
@NotNull public WireOut uint32checked(long u32)
uint32checked in interface ValueOut@NotNull public WireOut fixedInt64(long i64)
fixedInt64 in interface ValueOut@NotNull public WireOut int64array(long capacity)
int64array in interface ValueOut@NotNull public WireOut int64array(long capacity, @NotNull net.openhft.chronicle.core.values.LongArrayValues values)
int64array in interface ValueOut@NotNull public WireOut fixedFloat32(float f)
fixedFloat32 in interface ValueOut@NotNull public WireOut fixedFloat64(double d)
fixedFloat64 in interface ValueOut@NotNull public WireOut time(@NotNull java.time.LocalTime localTime)
@NotNull public WireOut zonedDateTime(@NotNull java.time.ZonedDateTime zonedDateTime)
zonedDateTime in interface ValueOut@NotNull public WireOut date(@NotNull java.time.LocalDate localDate)
@NotNull public WireOut dateTime(@NotNull java.time.LocalDateTime localDateTime)
@NotNull public ValueOut typePrefix(CharSequence typeName)
typePrefix in interface ValueOut@NotNull public WireOut typeLiteral(@NotNull CharSequence type)
typeLiteral in interface ValueOut@NotNull public WireOut typeLiteral(Class type)
typeLiteral in interface ValueOut@NotNull public WireOut typeLiteral(@NotNull java.util.function.BiConsumer<Class,net.openhft.chronicle.bytes.Bytes> typeTranslator, @NotNull Class type)
typeLiteral in interface ValueOut@NotNull public WireOut int32forBinding(int value)
int32forBinding in interface ValueOut@NotNull public WireOut int64forBinding(long value)
int64forBinding in interface ValueOut@NotNull public WireOut int32forBinding(int value, @NotNull net.openhft.chronicle.core.values.IntValue intValue)
int32forBinding in interface ValueOut@NotNull public WireOut int64forBinding(long value, @NotNull net.openhft.chronicle.core.values.LongValue longValue)
int64forBinding in interface ValueOut@NotNull public <T> WireOut sequence(T t, java.util.function.BiConsumer<T,ValueOut> writer)
@NotNull public WireOut marshallable(@NotNull WriteMarshallable object)
marshallable in interface ValueOut@NotNull public WireOut marshallable(@NotNull Serializable object)
marshallable in interface ValueOut@NotNull public WireOut map(Map map)
ValueOut@NotNull public WireOut typedMap(@NotNull Map<? extends WriteMarshallable,? extends Marshallable> map)
public void resetState()
resetState in interface ValueOutCopyright © 2016. All rights reserved.