| Modifier and Type | Method and Description |
|---|---|
BinaryObjectBuilder |
IgniteBinary.builder(BinaryObject binaryObj)
Creates binary builder initialized by existing binary object.
|
BinaryObjectBuilder |
IgniteBinary.builder(String typeName)
Creates new binary builder.
|
<T> T |
IgniteBinary.toBinary(Object obj)
Converts provided object to instance of
BinaryObject. |
BinaryType |
IgniteBinary.type(Class<?> cls)
Gets metadata for provided class.
|
BinaryType |
IgniteBinary.type(int typeId)
Gets metadata for provided type ID.
|
BinaryType |
IgniteBinary.type(String typeName)
Gets metadata for provided class name.
|
Collection<BinaryType> |
IgniteBinary.types()
Gets metadata for all known types.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BinaryInvalidTypeException
Exception indicating that class needed for deserialization of binary object does not exist.
|
| Modifier and Type | Method and Description |
|---|---|
BinaryObject |
BinaryObjectBuilder.build()
Builds binary object.
|
<T> T |
BinaryObject.deserialize()
Gets fully deserialized instance of binary object.
|
int |
BinaryObject.enumOrdinal()
Get ordinal for this enum object.
|
<F> F |
BinaryObject.field(String fieldName)
Gets field value.
|
void |
Binarylizable.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
BinaryReflectiveSerializer.readBinary(Object obj,
BinaryReader reader)
Reads fields from provided reader.
|
void |
BinarySerializer.readBinary(Object obj,
BinaryReader reader)
Reads fields from provided reader.
|
boolean |
BinaryRawReader.readBoolean() |
boolean |
BinaryReader.readBoolean(String fieldName) |
boolean[] |
BinaryRawReader.readBooleanArray() |
boolean[] |
BinaryReader.readBooleanArray(String fieldName) |
byte |
BinaryRawReader.readByte() |
byte |
BinaryReader.readByte(String fieldName) |
byte[] |
BinaryRawReader.readByteArray() |
byte[] |
BinaryReader.readByteArray(String fieldName) |
char |
BinaryRawReader.readChar() |
char |
BinaryReader.readChar(String fieldName) |
char[] |
BinaryRawReader.readCharArray() |
char[] |
BinaryReader.readCharArray(String fieldName) |
<T> Collection<T> |
BinaryRawReader.readCollection() |
<T> Collection<T> |
BinaryRawReader.readCollection(BinaryCollectionFactory<T> factory) |
<T> Collection<T> |
BinaryReader.readCollection(String fieldName) |
<T> Collection<T> |
BinaryReader.readCollection(String fieldName,
BinaryCollectionFactory<T> factory) |
Date |
BinaryRawReader.readDate() |
Date |
BinaryReader.readDate(String fieldName) |
Date[] |
BinaryRawReader.readDateArray() |
Date[] |
BinaryReader.readDateArray(String fieldName) |
BigDecimal |
BinaryRawReader.readDecimal() |
BigDecimal |
BinaryReader.readDecimal(String fieldName) |
BigDecimal[] |
BinaryRawReader.readDecimalArray() |
BigDecimal[] |
BinaryReader.readDecimalArray(String fieldName) |
double |
BinaryRawReader.readDouble() |
double |
BinaryReader.readDouble(String fieldName) |
double[] |
BinaryRawReader.readDoubleArray() |
double[] |
BinaryReader.readDoubleArray(String fieldName) |
<T extends Enum<?>> |
BinaryRawReader.readEnum() |
<T extends Enum<?>> |
BinaryReader.readEnum(String fieldName) |
<T extends Enum<?>> |
BinaryRawReader.readEnumArray() |
<T extends Enum<?>> |
BinaryReader.readEnumArray(String fieldName) |
float |
BinaryRawReader.readFloat() |
float |
BinaryReader.readFloat(String fieldName) |
float[] |
BinaryRawReader.readFloatArray() |
float[] |
BinaryReader.readFloatArray(String fieldName) |
int |
BinaryRawReader.readInt() |
int |
BinaryReader.readInt(String fieldName) |
int[] |
BinaryRawReader.readIntArray() |
int[] |
BinaryReader.readIntArray(String fieldName) |
long |
BinaryRawReader.readLong() |
long |
BinaryReader.readLong(String fieldName) |
long[] |
BinaryRawReader.readLongArray() |
long[] |
BinaryReader.readLongArray(String fieldName) |
<K,V> Map<K,V> |
BinaryRawReader.readMap() |
<K,V> Map<K,V> |
BinaryRawReader.readMap(BinaryMapFactory<K,V> factory) |
<K,V> Map<K,V> |
BinaryReader.readMap(String fieldName) |
<K,V> Map<K,V> |
BinaryReader.readMap(String fieldName,
BinaryMapFactory<K,V> factory) |
<T> T |
BinaryRawReader.readObject() |
<T> T |
BinaryReader.readObject(String fieldName) |
Object[] |
BinaryRawReader.readObjectArray() |
Object[] |
BinaryReader.readObjectArray(String fieldName) |
short |
BinaryRawReader.readShort() |
short |
BinaryReader.readShort(String fieldName) |
short[] |
BinaryRawReader.readShortArray() |
short[] |
BinaryReader.readShortArray(String fieldName) |
String |
BinaryRawReader.readString() |
String |
BinaryReader.readString(String fieldName) |
String[] |
BinaryRawReader.readStringArray() |
String[] |
BinaryReader.readStringArray(String fieldName) |
Time |
BinaryRawReader.readTime() |
Time |
BinaryReader.readTime(String fieldName) |
Time[] |
BinaryRawReader.readTimeArray() |
Time[] |
BinaryReader.readTimeArray(String fieldName) |
Timestamp |
BinaryRawReader.readTimestamp() |
Timestamp |
BinaryReader.readTimestamp(String fieldName) |
Timestamp[] |
BinaryRawReader.readTimestampArray() |
Timestamp[] |
BinaryReader.readTimestampArray(String fieldName) |
UUID |
BinaryRawReader.readUuid() |
UUID |
BinaryReader.readUuid(String fieldName) |
UUID[] |
BinaryRawReader.readUuidArray() |
UUID[] |
BinaryReader.readUuidArray(String fieldName) |
BinaryObjectBuilder |
BinaryObject.toBuilder()
Creates a new
BinaryObjectBuilder based on this binary object. |
BinaryType |
BinaryObject.type()
Gets type information for this binary object.
|
void |
Binarylizable.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
BinaryReflectiveSerializer.writeBinary(Object obj,
BinaryWriter writer)
Writes fields to provided writer.
|
void |
BinarySerializer.writeBinary(Object obj,
BinaryWriter writer)
Writes fields to provided writer.
|
void |
BinaryRawWriter.writeBoolean(boolean val) |
void |
BinaryWriter.writeBoolean(String fieldName,
boolean val) |
void |
BinaryRawWriter.writeBooleanArray(boolean[] val) |
void |
BinaryWriter.writeBooleanArray(String fieldName,
boolean[] val) |
void |
BinaryRawWriter.writeByte(byte val) |
void |
BinaryWriter.writeByte(String fieldName,
byte val) |
void |
BinaryRawWriter.writeByteArray(byte[] val) |
void |
BinaryWriter.writeByteArray(String fieldName,
byte[] val) |
void |
BinaryRawWriter.writeChar(char val) |
void |
BinaryWriter.writeChar(String fieldName,
char val) |
void |
BinaryRawWriter.writeCharArray(char[] val) |
void |
BinaryWriter.writeCharArray(String fieldName,
char[] val) |
<T> void |
BinaryRawWriter.writeCollection(Collection<T> col) |
<T> void |
BinaryWriter.writeCollection(String fieldName,
Collection<T> col) |
void |
BinaryRawWriter.writeDate(Date val) |
void |
BinaryWriter.writeDate(String fieldName,
Date val) |
void |
BinaryRawWriter.writeDateArray(Date[] val) |
void |
BinaryWriter.writeDateArray(String fieldName,
Date[] val) |
void |
BinaryRawWriter.writeDecimal(BigDecimal val) |
void |
BinaryWriter.writeDecimal(String fieldName,
BigDecimal val) |
void |
BinaryRawWriter.writeDecimalArray(BigDecimal[] val) |
void |
BinaryWriter.writeDecimalArray(String fieldName,
BigDecimal[] val) |
void |
BinaryRawWriter.writeDouble(double val) |
void |
BinaryWriter.writeDouble(String fieldName,
double val) |
void |
BinaryRawWriter.writeDoubleArray(double[] val) |
void |
BinaryWriter.writeDoubleArray(String fieldName,
double[] val) |
<T extends Enum<?>> |
BinaryWriter.writeEnum(String fieldName,
T val) |
<T extends Enum<?>> |
BinaryRawWriter.writeEnum(T val) |
<T extends Enum<?>> |
BinaryWriter.writeEnumArray(String fieldName,
T[] val) |
<T extends Enum<?>> |
BinaryRawWriter.writeEnumArray(T[] val) |
void |
BinaryRawWriter.writeFloat(float val) |
void |
BinaryWriter.writeFloat(String fieldName,
float val) |
void |
BinaryRawWriter.writeFloatArray(float[] val) |
void |
BinaryWriter.writeFloatArray(String fieldName,
float[] val) |
void |
BinaryRawWriter.writeInt(int val) |
void |
BinaryWriter.writeInt(String fieldName,
int val) |
void |
BinaryRawWriter.writeIntArray(int[] val) |
void |
BinaryWriter.writeIntArray(String fieldName,
int[] val) |
void |
BinaryRawWriter.writeLong(long val) |
void |
BinaryWriter.writeLong(String fieldName,
long val) |
void |
BinaryRawWriter.writeLongArray(long[] val) |
void |
BinaryWriter.writeLongArray(String fieldName,
long[] val) |
<K,V> void |
BinaryRawWriter.writeMap(Map<K,V> map) |
<K,V> void |
BinaryWriter.writeMap(String fieldName,
Map<K,V> map) |
void |
BinaryRawWriter.writeObject(Object obj) |
void |
BinaryWriter.writeObject(String fieldName,
Object obj) |
void |
BinaryRawWriter.writeObjectArray(Object[] val) |
void |
BinaryWriter.writeObjectArray(String fieldName,
Object[] val) |
void |
BinaryRawWriter.writeShort(short val) |
void |
BinaryWriter.writeShort(String fieldName,
short val) |
void |
BinaryRawWriter.writeShortArray(short[] val) |
void |
BinaryWriter.writeShortArray(String fieldName,
short[] val) |
void |
BinaryRawWriter.writeString(String val) |
void |
BinaryWriter.writeString(String fieldName,
String val) |
void |
BinaryRawWriter.writeStringArray(String[] val) |
void |
BinaryWriter.writeStringArray(String fieldName,
String[] val) |
void |
BinaryWriter.writeTime(String fieldName,
Time val) |
void |
BinaryRawWriter.writeTime(Time val) |
void |
BinaryWriter.writeTimeArray(String fieldName,
Time[] val) |
void |
BinaryRawWriter.writeTimeArray(Time[] val) |
void |
BinaryWriter.writeTimestamp(String fieldName,
Timestamp val) |
void |
BinaryRawWriter.writeTimestamp(Timestamp val) |
void |
BinaryWriter.writeTimestampArray(String fieldName,
Timestamp[] val) |
void |
BinaryRawWriter.writeTimestampArray(Timestamp[] val) |
void |
BinaryWriter.writeUuid(String fieldName,
UUID val) |
void |
BinaryRawWriter.writeUuid(UUID val) |
void |
BinaryWriter.writeUuidArray(String fieldName,
UUID[] val) |
void |
BinaryRawWriter.writeUuidArray(UUID[] val) |
| Modifier and Type | Method and Description |
|---|---|
void |
IgfsPath.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsPathSummary.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsPath.readRawBinary(BinaryRawReader reader)
Read raw binary.
|
void |
IgfsPath.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsPathSummary.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsPath.writeRawBinary(BinaryRawWriter writer)
Write raw binary.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BinaryNoopMetadataHandler.addMeta(int typeId,
BinaryType meta)
Adds meta data.
|
void |
BinaryMetadataHandler.addMeta(int typeId,
BinaryType meta)
Adds meta data.
|
void |
BinaryCachingMetadataHandler.addMeta(int typeId,
BinaryType type)
Adds meta data.
|
void |
BinaryContext.configure(BinaryMarshaller marsh,
IgniteConfiguration cfg) |
BinaryClassDescriptor |
BinaryContext.descriptorForClass(Class<?> cls,
boolean deserialize) |
<T> T |
BinaryObjectOffheapImpl.deserialize()
Gets fully deserialized instance of binary object.
|
<T> T |
BinaryObjectImpl.deserialize()
Gets fully deserialized instance of binary object.
|
<T> T |
BinaryEnumObjectImpl.deserialize()
Gets fully deserialized instance of binary object.
|
<T> T |
GridBinaryMarshaller.deserialize(byte[] arr,
ClassLoader ldr) |
static Class |
BinaryUtils.doReadClass(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr) |
static Class |
BinaryUtils.doReadClass(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
boolean deserialize) |
static Class |
BinaryUtils.doReadClass(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
int typeId) |
static Collection<?> |
BinaryUtils.doReadCollection(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
BinaryReaderHandlesHolder handles,
boolean deserialize,
BinaryCollectionFactory factory) |
static Date[] |
BinaryUtils.doReadDateArray(BinaryInputStream in) |
static BigDecimal[] |
BinaryUtils.doReadDecimalArray(BinaryInputStream in) |
static Enum<?> |
BinaryUtils.doReadEnum(BinaryInputStream in,
Class<?> cls)
Having target class in place we simply read ordinal and create final representation.
|
static Object[] |
BinaryUtils.doReadEnumArray(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
Class<?> cls) |
static Map<?,?> |
BinaryUtils.doReadMap(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
BinaryReaderHandlesHolder handles,
boolean deserialize,
BinaryMapFactory factory) |
static Object |
BinaryUtils.doReadObject(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
BinaryReaderHandlesHolder handles) |
static Object[] |
BinaryUtils.doReadObjectArray(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
BinaryReaderHandlesHolder handles,
boolean deserialize) |
static String[] |
BinaryUtils.doReadStringArray(BinaryInputStream in) |
static Time[] |
BinaryUtils.doReadTimeArray(BinaryInputStream in) |
static Timestamp[] |
BinaryUtils.doReadTimestampArray(BinaryInputStream in) |
static UUID[] |
BinaryUtils.doReadUuidArray(BinaryInputStream in) |
void |
BinaryWriterExImpl.doWriteObject(Object obj)
Write object.
|
int |
BinaryObjectExImpl.enumOrdinal()
Get ordinal for this enum object.
|
int |
BinaryEnumObjectImpl.enumOrdinal()
Get ordinal for this enum object.
|
<F> F |
BinaryObjectOffheapImpl.field(int fieldId)
Gets field value.
|
<F> F |
BinaryObjectImpl.field(int fieldId)
Gets field value.
|
abstract <F> F |
BinaryObjectExImpl.field(int fieldId)
Gets field value.
|
<F> F |
BinaryObjectOffheapImpl.field(String fieldName)
Gets field value.
|
<F> F |
BinaryObjectImpl.field(String fieldName)
Gets field value.
|
<F> F |
BinaryEnumObjectImpl.field(String fieldName)
Gets field value.
|
static <T> T |
BinaryEnumCache.get(Class<?> cls,
int ord)
Get value for the given class and ordinal.
|
byte[] |
GridBinaryMarshaller.marshal(Object obj) |
BinaryType |
BinaryNoopMetadataHandler.metadata(int typeId)
Gets meta data for provided type ID.
|
BinaryType |
BinaryMetadataHandler.metadata(int typeId)
Gets meta data for provided type ID.
|
BinaryType |
BinaryContext.metadata(int typeId) |
BinaryType |
BinaryCachingMetadataHandler.metadata(int typeId)
Gets meta data for provided type ID.
|
BinaryType |
BinaryNoopMetadataHandler.metadata(int typeId,
int schemaId)
Gets metadata for provided type ID and schema ID.
|
BinaryType |
BinaryMetadataHandler.metadata(int typeId,
int schemaId)
Gets metadata for provided type ID and schema ID.
|
BinaryType |
BinaryContext.metadata(int typeId,
int schemaId) |
BinaryType |
BinaryCachingMetadataHandler.metadata(int typeId,
int schemaId)
Gets metadata for provided type ID and schema ID.
|
BinaryType |
BinaryObjectOffheapImpl.rawType()
Get raw type.
|
BinaryType |
BinaryObjectImpl.rawType()
Get raw type.
|
BinaryType |
BinaryObjectEx.rawType()
Get raw type.
|
BinaryType |
BinaryEnumObjectImpl.rawType()
Get raw type.
|
void |
BinaryFieldAccessor.read(Object obj,
BinaryReaderExImpl reader)
Read field.
|
protected abstract void |
BinaryFieldAccessor.read0(Object obj,
BinaryReaderExImpl reader)
Read field.
|
void |
BinaryTreeSet.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
BinaryTreeMap.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
boolean |
BinaryReaderExImpl.readBoolean() |
boolean |
BinaryReaderExImpl.readBoolean(String fieldName) |
boolean[] |
BinaryReaderExImpl.readBooleanArray() |
boolean[] |
BinaryReaderExImpl.readBooleanArray(String fieldName) |
byte |
BinaryReaderExImpl.readByte() |
byte |
BinaryReaderExImpl.readByte(String fieldName) |
byte[] |
BinaryReaderExImpl.readByteArray() |
byte[] |
BinaryReaderExImpl.readByteArray(String fieldName) |
char |
BinaryReaderExImpl.readChar() |
char |
BinaryReaderExImpl.readChar(String fieldName) |
char[] |
BinaryReaderExImpl.readCharArray() |
char[] |
BinaryReaderExImpl.readCharArray(String fieldName) |
<T> Collection<T> |
BinaryReaderExImpl.readCollection() |
<T> Collection<T> |
BinaryReaderExImpl.readCollection(BinaryCollectionFactory<T> factory) |
<T> Collection<T> |
BinaryReaderExImpl.readCollection(String fieldName) |
<T> Collection<T> |
BinaryReaderExImpl.readCollection(String fieldName,
BinaryCollectionFactory<T> factory) |
Date |
BinaryReaderExImpl.readDate() |
Date |
BinaryReaderExImpl.readDate(String fieldName) |
Date[] |
BinaryReaderExImpl.readDateArray() |
Date[] |
BinaryReaderExImpl.readDateArray(String fieldName) |
BigDecimal |
BinaryReaderExImpl.readDecimal() |
BigDecimal |
BinaryReaderExImpl.readDecimal(String fieldName) |
BigDecimal[] |
BinaryReaderExImpl.readDecimalArray() |
BigDecimal[] |
BinaryReaderExImpl.readDecimalArray(String fieldName) |
double |
BinaryReaderExImpl.readDouble() |
double |
BinaryReaderExImpl.readDouble(String fieldName) |
double[] |
BinaryReaderExImpl.readDoubleArray() |
double[] |
BinaryReaderExImpl.readDoubleArray(String fieldName) |
<T extends Enum<?>> |
BinaryReaderExImpl.readEnum() |
<T extends Enum<?>> |
BinaryReaderExImpl.readEnum(String fieldName) |
<T extends Enum<?>> |
BinaryReaderExImpl.readEnumArray() |
<T extends Enum<?>> |
BinaryReaderExImpl.readEnumArray(String fieldName) |
float |
BinaryReaderExImpl.readFloat() |
float |
BinaryReaderExImpl.readFloat(String fieldName) |
float[] |
BinaryReaderExImpl.readFloatArray() |
float[] |
BinaryReaderExImpl.readFloatArray(String fieldName) |
int |
BinaryReaderExImpl.readInt() |
int |
BinaryReaderExImpl.readInt(String fieldName) |
int[] |
BinaryReaderExImpl.readIntArray() |
int[] |
BinaryReaderExImpl.readIntArray(String fieldName) |
long |
BinaryReaderExImpl.readLong() |
long |
BinaryReaderExImpl.readLong(String fieldName) |
long[] |
BinaryReaderExImpl.readLongArray() |
long[] |
BinaryReaderExImpl.readLongArray(String fieldName) |
<K,V> Map<K,V> |
BinaryReaderExImpl.readMap() |
<K,V> Map<K,V> |
BinaryReaderExImpl.readMap(BinaryMapFactory<K,V> factory) |
<K,V> Map<K,V> |
BinaryReaderExImpl.readMap(String fieldName) |
<K,V> Map<K,V> |
BinaryReaderExImpl.readMap(String fieldName,
BinaryMapFactory<K,V> factory) |
Object |
BinaryReaderExImpl.readObject() |
<T> T |
BinaryReaderExImpl.readObject(String fieldName) |
Object[] |
BinaryReaderExImpl.readObjectArray() |
Object[] |
BinaryReaderExImpl.readObjectArray(String fieldName) |
Object |
BinaryReaderExImpl.readObjectDetached() |
Object |
BinaryRawReaderEx.readObjectDetached() |
short |
BinaryReaderExImpl.readShort() |
short |
BinaryReaderExImpl.readShort(String fieldName) |
short[] |
BinaryReaderExImpl.readShortArray() |
short[] |
BinaryReaderExImpl.readShortArray(String fieldName) |
String |
BinaryReaderExImpl.readString() |
String |
BinaryReaderExImpl.readString(String fieldName) |
String[] |
BinaryReaderExImpl.readStringArray() |
String[] |
BinaryReaderExImpl.readStringArray(String fieldName) |
Time |
BinaryReaderExImpl.readTime() |
Time |
BinaryReaderExImpl.readTime(String fieldName) |
Time[] |
BinaryReaderExImpl.readTimeArray() |
Time[] |
BinaryReaderExImpl.readTimeArray(String fieldName) |
Timestamp |
BinaryReaderExImpl.readTimestamp() |
Timestamp |
BinaryReaderExImpl.readTimestamp(String fieldName) |
Timestamp[] |
BinaryReaderExImpl.readTimestampArray() |
Timestamp[] |
BinaryReaderExImpl.readTimestampArray(String fieldName) |
UUID |
BinaryReaderExImpl.readUuid() |
UUID |
BinaryReaderExImpl.readUuid(String fieldName) |
UUID[] |
BinaryReaderExImpl.readUuidArray() |
UUID[] |
BinaryReaderExImpl.readUuidArray(String fieldName) |
void |
BinaryContext.registerUserType(String clsName,
BinaryInternalMapper mapper,
BinarySerializer serializer,
BinaryIdentityResolver identity,
String affKeyFieldName,
boolean isEnum) |
BinaryObjectBuilder |
BinaryObjectOffheapImpl.toBuilder()
Creates a new
BinaryObjectBuilder based on this binary object. |
BinaryObjectBuilder |
BinaryObjectExImpl.toBuilder()
Creates a new
BinaryObjectBuilder based on this binary object. |
BinaryObjectBuilder |
BinaryEnumObjectImpl.toBuilder()
Creates a new
BinaryObjectBuilder based on this binary object. |
BinaryType |
BinaryObjectOffheapImpl.type()
Gets type information for this binary object.
|
BinaryType |
BinaryObjectImpl.type()
Gets type information for this binary object.
|
BinaryType |
BinaryEnumObjectImpl.type()
Gets type information for this binary object.
|
<T> T |
GridBinaryMarshaller.unmarshal(BinaryInputStream in) |
static Object |
BinaryUtils.unmarshal(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr) |
static Object |
BinaryUtils.unmarshal(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
BinaryReaderHandlesHolder handles) |
static Object |
BinaryUtils.unmarshal(BinaryInputStream in,
BinaryContext ctx,
ClassLoader ldr,
BinaryReaderHandlesHolder handles,
boolean detach) |
<T> T |
GridBinaryMarshaller.unmarshal(byte[] bytes,
ClassLoader clsLdr) |
Object |
BinaryReaderExImpl.unmarshal(int offset) |
void |
BinaryContext.updateMetadata(int typeId,
BinaryMetadata meta) |
abstract void |
BinaryFieldAccessor.write(Object obj,
BinaryWriterExImpl writer)
Write field.
|
void |
BinaryTreeSet.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
BinaryTreeMap.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
BinaryWriterExImpl.writeBoolean(boolean val) |
void |
BinaryWriterExImpl.writeBoolean(String fieldName,
boolean val) |
void |
BinaryWriterExImpl.writeBooleanArray(boolean[] val) |
void |
BinaryWriterExImpl.writeBooleanArray(String fieldName,
boolean[] val) |
void |
BinaryWriterExImpl.writeByte(byte val) |
void |
BinaryWriterExImpl.writeByte(String fieldName,
byte val) |
void |
BinaryWriterExImpl.writeByteArray(byte[] val) |
void |
BinaryWriterExImpl.writeByteArray(String fieldName,
byte[] val) |
void |
BinaryWriterExImpl.writeChar(char val) |
void |
BinaryWriterExImpl.writeChar(String fieldName,
char val) |
void |
BinaryWriterExImpl.writeCharArray(char[] val) |
void |
BinaryWriterExImpl.writeCharArray(String fieldName,
char[] val) |
<T> void |
BinaryWriterExImpl.writeCollection(Collection<T> col) |
<T> void |
BinaryWriterExImpl.writeCollection(String fieldName,
Collection<T> col) |
void |
BinaryWriterExImpl.writeDate(Date val) |
void |
BinaryWriterExImpl.writeDate(String fieldName,
Date val) |
void |
BinaryWriterExImpl.writeDateArray(Date[] val) |
void |
BinaryWriterExImpl.writeDateArray(String fieldName,
Date[] val) |
void |
BinaryWriterExImpl.writeDecimal(BigDecimal val) |
void |
BinaryWriterExImpl.writeDecimal(String fieldName,
BigDecimal val) |
void |
BinaryWriterExImpl.writeDecimalArray(BigDecimal[] val) |
void |
BinaryWriterExImpl.writeDecimalArray(String fieldName,
BigDecimal[] val) |
void |
BinaryWriterExImpl.writeDouble(double val) |
void |
BinaryWriterExImpl.writeDouble(String fieldName,
double val) |
void |
BinaryWriterExImpl.writeDoubleArray(double[] val) |
void |
BinaryWriterExImpl.writeDoubleArray(String fieldName,
double[] val) |
<T extends Enum<?>> |
BinaryWriterExImpl.writeEnum(String fieldName,
T val) |
<T extends Enum<?>> |
BinaryWriterExImpl.writeEnum(T val) |
<T extends Enum<?>> |
BinaryWriterExImpl.writeEnumArray(String fieldName,
T[] val) |
<T extends Enum<?>> |
BinaryWriterExImpl.writeEnumArray(T[] val) |
void |
BinaryWriterExImpl.writeFloat(float val) |
void |
BinaryWriterExImpl.writeFloat(String fieldName,
float val) |
void |
BinaryWriterExImpl.writeFloatArray(float[] val) |
void |
BinaryWriterExImpl.writeFloatArray(String fieldName,
float[] val) |
void |
BinaryWriterExImpl.writeInt(int val) |
void |
BinaryWriterExImpl.writeInt(int pos,
int val)
Write int value at the specific position.
|
void |
BinaryRawWriterEx.writeInt(int pos,
int val)
Write int value at the specific position.
|
void |
BinaryWriterExImpl.writeInt(String fieldName,
int val) |
void |
BinaryWriterExImpl.writeIntArray(int[] val) |
void |
BinaryWriterExImpl.writeIntArray(String fieldName,
int[] val) |
void |
BinaryWriterExImpl.writeLong(long val) |
void |
BinaryWriterExImpl.writeLong(String fieldName,
long val) |
void |
BinaryWriterExImpl.writeLongArray(long[] val) |
void |
BinaryWriterExImpl.writeLongArray(String fieldName,
long[] val) |
<K,V> void |
BinaryWriterExImpl.writeMap(Map<K,V> map) |
<K,V> void |
BinaryWriterExImpl.writeMap(String fieldName,
Map<K,V> map) |
void |
BinaryWriterExImpl.writeObject(Object obj) |
void |
BinaryWriterExImpl.writeObject(String fieldName,
Object obj) |
void |
BinaryWriterExImpl.writeObjectArray(Object[] val) |
void |
BinaryWriterExImpl.writeObjectArray(String fieldName,
Object[] val) |
void |
BinaryWriterExImpl.writeObjectDetached(Object obj) |
void |
BinaryRawWriterEx.writeObjectDetached(Object obj) |
void |
BinaryWriterExImpl.writeShort(short val) |
void |
BinaryWriterExImpl.writeShort(String fieldName,
short val) |
void |
BinaryWriterExImpl.writeShortArray(short[] val) |
void |
BinaryWriterExImpl.writeShortArray(String fieldName,
short[] val) |
void |
BinaryWriterExImpl.writeString(String val) |
void |
BinaryWriterExImpl.writeString(String fieldName,
String val) |
void |
BinaryWriterExImpl.writeStringArray(String[] val) |
void |
BinaryWriterExImpl.writeStringArray(String fieldName,
String[] val) |
void |
BinaryWriterExImpl.writeTime(String fieldName,
Time val) |
void |
BinaryWriterExImpl.writeTime(Time val) |
void |
BinaryWriterExImpl.writeTimeArray(String fieldName,
Time[] val) |
void |
BinaryWriterExImpl.writeTimeArray(Time[] val) |
void |
BinaryWriterExImpl.writeTimestamp(String fieldName,
Timestamp val) |
void |
BinaryWriterExImpl.writeTimestamp(Timestamp val) |
void |
BinaryWriterExImpl.writeTimestampArray(String fieldName,
Timestamp[] val) |
void |
BinaryWriterExImpl.writeTimestampArray(Timestamp[] val) |
void |
BinaryWriterExImpl.writeUuid(String fieldName,
UUID val) |
void |
BinaryWriterExImpl.writeUuid(UUID val) |
void |
BinaryWriterExImpl.writeUuidArray(String fieldName,
UUID[] val) |
void |
BinaryWriterExImpl.writeUuidArray(UUID[] val) |
| Modifier and Type | Method and Description |
|---|---|
void |
CacheObjectBinaryProcessorImpl.addMeta(int typeId,
BinaryType newMeta) |
byte[] |
CacheObjectBinaryProcessorImpl.marshal(Object obj) |
Object |
CacheObjectBinaryProcessorImpl.marshalToBinary(Object obj) |
Collection<BinaryType> |
CacheObjectBinaryProcessorImpl.metadata() |
Map<Integer,BinaryType> |
CacheObjectBinaryProcessorImpl.metadata(Collection<Integer> typeIds) |
<T> T |
IgniteBinaryImpl.toBinary(Object obj)
Converts provided object to instance of
BinaryObject. |
BinaryType |
IgniteBinaryImpl.type(Class<?> cls)
Gets metadata for provided class.
|
BinaryType |
IgniteBinaryImpl.type(int typeId)
Gets metadata for provided type ID.
|
BinaryType |
IgniteBinaryImpl.type(String typeName)
Gets metadata for provided class name.
|
Collection<BinaryType> |
IgniteBinaryImpl.types()
Gets metadata for all known types.
|
Object |
CacheObjectBinaryProcessorImpl.unmarshal(long ptr,
boolean forceHeap) |
Object |
CacheObjectBinaryProcessorImpl.unwrapTemporary(GridCacheContext ctx,
Object obj)
Converts temporary off-heap object to heap-based.
|
void |
CacheObjectBinaryProcessorImpl.updateMetadata(int typeId,
String typeName,
String affKeyFieldName,
Map<String,BinaryFieldMetadata> fieldTypeIds,
boolean isEnum) |
| Modifier and Type | Method and Description |
|---|---|
BinaryObjectBuilder |
NoOpBinary.builder(BinaryObject binaryObj)
Creates binary builder initialized by existing binary object.
|
BinaryObjectBuilder |
NoOpBinary.builder(String typeName)
Creates new binary builder.
|
<T> T |
NoOpBinary.toBinary(Object obj)
Converts provided object to instance of
BinaryObject. |
BinaryType |
NoOpBinary.type(Class<?> cls)
Gets metadata for provided class.
|
BinaryType |
NoOpBinary.type(int typeId)
Gets metadata for provided type ID.
|
BinaryType |
NoOpBinary.type(String typeName)
Gets metadata for provided class name.
|
Collection<BinaryType> |
NoOpBinary.types()
Gets metadata for all known types.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GridClosureProcessor.C1.readBinary(BinaryReader reader) |
void |
GridClosureProcessor.C2.readBinary(BinaryReader reader) |
void |
GridClosureProcessor.C4.readBinary(BinaryReader reader) |
void |
GridClosureProcessor.C1.writeBinary(BinaryWriter writer) |
void |
GridClosureProcessor.C2.writeBinary(BinaryWriter writer) |
void |
GridClosureProcessor.C4.writeBinary(BinaryWriter writer) |
| Modifier and Type | Method and Description |
|---|---|
void |
IgfsFileImpl.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsFileAffinityRange.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsNodePredicate.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsFileMap.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsFileInfo.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsBlockKey.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsBlockLocationImpl.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsDirectoryInfo.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsListingEntry.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsFileAffinityRange.readRawBinary(BinaryRawReader reader)
Reads fields from provided reader.
|
void |
IgfsFileImpl.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsFileAffinityRange.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsNodePredicate.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsFileMap.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsFileInfo.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsBlockKey.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsBlockLocationImpl.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsDirectoryInfo.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsListingEntry.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsFileAffinityRange.writeRawBinary(BinaryRawWriter writer)
Writes fields to provided writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IgfsClientAbstractCallable.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsClientSetTimesCallable.readBinary0(BinaryRawReader reader)
Read binary.
|
void |
IgfsClientUpdateCallable.readBinary0(BinaryRawReader reader)
Read binary.
|
void |
IgfsClientMkdirsCallable.readBinary0(BinaryRawReader reader)
Read binary.
|
void |
IgfsClientDeleteCallable.readBinary0(BinaryRawReader reader)
Read binary.
|
void |
IgfsClientRenameCallable.readBinary0(BinaryRawReader reader)
Read binary.
|
void |
IgfsClientAffinityCallable.readBinary0(BinaryRawReader reader)
Read binary.
|
void |
IgfsClientAbstractCallable.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsClientSetTimesCallable.writeBinary0(BinaryRawWriter writer)
Write binary.
|
void |
IgfsClientUpdateCallable.writeBinary0(BinaryRawWriter writer)
Write binary.
|
void |
IgfsClientMkdirsCallable.writeBinary0(BinaryRawWriter writer)
Write binary.
|
void |
IgfsClientDeleteCallable.writeBinary0(BinaryRawWriter writer)
Write binary.
|
void |
IgfsClientRenameCallable.writeBinary0(BinaryRawWriter writer)
Write binary.
|
void |
IgfsClientAffinityCallable.writeBinary0(BinaryRawWriter writer)
Write binary.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IgfsClientMetaUnlockCallable.readBinary0(BinaryRawReader reader)
Read binary.
|
void |
IgfsClientMetaUnlockCallable.writeBinary0(BinaryRawWriter writer)
Write binary.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IgfsDataPutProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsDataPutProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IgfsMetaFileLockProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaFileCreateProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaDirectoryListingAddProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaUpdateTimesProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaDirectoryListingRenameProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaFileRangeUpdateProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaDirectoryListingReplaceProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaFileRangeDeleteProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaUpdatePropertiesProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaFileReserveSpaceProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaDirectoryListingRemoveProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaDirectoryCreateProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaFileUnlockProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgfsMetaFileLockProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaFileCreateProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaDirectoryListingAddProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaUpdateTimesProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaDirectoryListingRenameProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaFileRangeUpdateProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaDirectoryListingReplaceProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaFileRangeDeleteProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaUpdatePropertiesProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaFileReserveSpaceProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaDirectoryListingRemoveProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaDirectoryCreateProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
IgfsMetaFileUnlockProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PlatformJavaObjectFactoryProxy.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
PlatformJavaObjectFactoryProxy.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PlatformDotNetEntityFrameworkCacheEntry.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
PlatformDotNetEntityFrameworkCacheKey.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
PlatformDotNetEntityFrameworkCacheEntry.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
PlatformDotNetEntityFrameworkCacheKey.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PlatformDotNetSessionLockResult.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
PlatformDotNetSessionData.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
PlatformDotNetSessionSetAndUnlockProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
PlatformDotNetSessionLockResult.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
PlatformDotNetSessionData.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
PlatformDotNetSessionSetAndUnlockProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
WebSessionEntity.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
WebSessionAttributeProcessor.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
WebSessionEntity.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
void |
WebSessionAttributeProcessor.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IgniteUuid.readBinary(BinaryReader reader)
Reads fields from provided reader.
|
void |
IgniteUuid.writeBinary(BinaryWriter writer)
Writes fields to provided writer.
|
Follow @ApacheIgnite
Ignite Fabric : ver. 2.0.0 Release Date : April 30 2017