public class BinaryObjectOffheapImpl extends BinaryObjectExImpl implements Externalizable, CacheObject
TYPE_BINARY, TYPE_BINARY_ENUM, TYPE_BYTE_ARR, TYPE_REGULAR| Constructor and Description |
|---|
BinaryObjectOffheapImpl()
For
Externalizable (not supported). |
BinaryObjectOffheapImpl(BinaryContext ctx,
long ptr,
int start,
int size) |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
array() |
byte |
cacheObjectType() |
BinaryObject |
clone()
Copies this binary object.
|
BinaryContext |
context()
Get binary context.
|
BinarySerializedFieldComparator |
createFieldComparator()
Create field comparer.
|
BinarySchema |
createSchema()
Create schema for object.
|
int |
dataStartOffset()
Get offset of data begin.
|
<T> T |
deserialize()
Gets fully deserialized instance of binary object.
|
byte |
directType()
Gets message type.
|
protected <F> F |
field(BinaryReaderHandles rCtx,
String fieldName) |
<F> F |
field(int fieldId)
Gets field value.
|
<F> F |
field(String fieldName)
Gets field value.
|
<F> F |
fieldByOrder(int order)
Get field by offset.
|
byte |
fieldsCount()
Gets fields count.
|
void |
finishUnmarshal(CacheObjectContext ctx,
ClassLoader ldr) |
int |
footerStartOffset()
Get offset of the footer begin.
|
boolean |
hasArray() |
boolean |
hasField(String fieldName)
Checks whether field exists in the object.
|
int |
hashCode() |
boolean |
hasSchema() |
BinaryObject |
heapCopy() |
boolean |
isFlagSet(short flag)
Check if flag set.
|
boolean |
isPlatformType()
Gets flag indicating whether object value is a platform type.
|
int |
length() |
long |
offheapAddress() |
void |
onAckReceived()
Method called when ack message received.
|
CacheObject |
prepareForCache(CacheObjectContext ctx)
Prepares cache object for cache (e.g. copies user-provided object if needed).
|
void |
prepareMarshal(CacheObjectContext ctx) |
BinaryType |
rawType()
Get raw type.
|
void |
readExternal(ObjectInput in) |
boolean |
readFrom(ByteBuffer buf,
MessageReader reader)
Reads this message from provided byte buffer.
|
int |
schemaId()
Get schema ID.
|
int |
start() |
BinaryObjectBuilder |
toBuilder()
Creates a new
BinaryObjectBuilder based on this binary object. |
BinaryType |
type()
Gets type information for this binary object.
|
int |
typeId() |
<T> T |
value(CacheObjectContext ctx,
boolean cpy) |
byte[] |
valueBytes(CacheObjectContext ctx) |
void |
writeExternal(ObjectOutput out) |
boolean |
writeTo(ByteBuffer buf,
MessageWriter writer)
Writes this message to provided byte buffer.
|
enumOrdinal, equals, toStringpublic BinaryObjectOffheapImpl()
Externalizable (not supported).public BinaryObjectOffheapImpl(BinaryContext ctx, long ptr, int start, int size)
ctx - Context.ptr - Memory address.start - Object start.size - Memory size.public BinaryObject heapCopy()
public int typeId()
typeId in interface BinaryObjectExpublic int length()
length in class BinaryObjectExImplpublic boolean hasSchema()
hasSchema in class BinaryObjectExImplTrue if object has schema.public int schemaId()
schemaId in class BinaryObjectExImplpublic BinarySchema createSchema()
createSchema in class BinaryObjectExImplpublic BinaryContext context()
context in class BinaryObjectExImplpublic int start()
start in class BinaryObjectExImplpublic byte[] array()
array in class BinaryObjectExImplnull.public long offheapAddress()
offheapAddress in class BinaryObjectExImplpublic boolean hasArray()
hasArray in class BinaryObjectExImplTrue if object is array based.public boolean isFlagSet(short flag)
isFlagSet in interface BinaryObjectExflag - flag to check.true if flag is set, false otherwise.@Nullable public BinaryType type() throws BinaryObjectException
type in interface BinaryObjectBinaryObjectException - In case of error.@Nullable public BinaryType rawType() throws BinaryObjectException
rawType in interface BinaryObjectExBinaryObjectException - If failed.@Nullable public <F> F field(String fieldName) throws BinaryObjectException
field in interface BinaryObjectfieldName - Field name.BinaryObjectException - In case of any other error.@Nullable
public <F> F field(int fieldId)
throws BinaryObjectException
field in class BinaryObjectExImplfieldId - Field ID.BinaryObjectException - In case of any other error.public BinarySerializedFieldComparator createFieldComparator()
createFieldComparator in class BinaryObjectExImplpublic int dataStartOffset()
dataStartOffset in class BinaryObjectExImplpublic int footerStartOffset()
footerStartOffset in class BinaryObjectExImpl@Nullable public <F> F fieldByOrder(int order)
fieldByOrder in class BinaryObjectExImplorder - Field offset.@Nullable protected <F> F field(BinaryReaderHandles rCtx, String fieldName)
field in class BinaryObjectExImplrCtx - Reader context.fieldName - Field name.public boolean hasField(String fieldName)
hasField in interface BinaryObjectfieldName - Field name.True if field exists.@Nullable
public <T> T deserialize()
throws BinaryObjectException
deserialize in interface BinaryObjectBinaryInvalidTypeException - If class doesn't exist.BinaryObjectException - In case of any other error.public BinaryObject clone() throws CloneNotSupportedException
clone in interface BinaryObjectclone in class BinaryObjectExImplCloneNotSupportedExceptionpublic BinaryObjectBuilder toBuilder() throws BinaryObjectException
BinaryObjectBuilder based on this binary object. The following code
BinaryObjectBuilder builder = binaryObject.toBuilder();is equivalent to
BinaryObjectBuilder builder = ignite.binary().builder(binaryObject);
toBuilder in interface BinaryObjecttoBuilder in class BinaryObjectExImplBinaryObjectException - If builder cannot be created.public byte cacheObjectType()
cacheObjectType in interface CacheObjectpublic boolean isPlatformType()
IgniteCache.withKeepBinary() is used or not.isPlatformType in interface CacheObject@Nullable public <T> T value(CacheObjectContext ctx, boolean cpy)
value in interface CacheObjectctx - Context.cpy - If true need to copy value.public byte[] valueBytes(CacheObjectContext ctx) throws IgniteCheckedException
valueBytes in interface CacheObjectctx - Context.IgniteCheckedException - If failed.public CacheObject prepareForCache(CacheObjectContext ctx)
prepareForCache in interface CacheObjectctx - Cache context.public void finishUnmarshal(CacheObjectContext ctx, ClassLoader ldr) throws IgniteCheckedException
finishUnmarshal in interface CacheObjectctx - Context.ldr - Class loader.IgniteCheckedException - If failed.public void prepareMarshal(CacheObjectContext ctx) throws IgniteCheckedException
prepareMarshal in interface CacheObjectctx - Context.IgniteCheckedException - If failed.public boolean writeTo(ByteBuffer buf, MessageWriter writer)
public boolean readFrom(ByteBuffer buf, MessageReader reader)
public byte directType()
directType in interface Messagepublic byte fieldsCount()
fieldsCount in interface Messagepublic void writeExternal(ObjectOutput out) throws IOException
writeExternal in interface ExternalizableIOExceptionpublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal in interface ExternalizableIOExceptionClassNotFoundExceptionpublic void onAckReceived()
onAckReceived in interface Message
Follow @ApacheIgnite
Ignite Fabric : ver. 1.8.0 Release Date : December 5 2016