Class PlatformDotNetEntityFrameworkCacheEntry
- java.lang.Object
-
- org.apache.ignite.internal.processors.platform.entityframework.PlatformDotNetEntityFrameworkCacheEntry
-
- All Implemented Interfaces:
Binarylizable
public class PlatformDotNetEntityFrameworkCacheEntry extends Object implements Binarylizable
EntityFramework cache entry.
-
-
Constructor Summary
Constructors Constructor Description PlatformDotNetEntityFrameworkCacheEntry()Ctor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]data()String[]entitySets()voidreadBinary(BinaryReader reader)Reads fields from provided reader.voidwriteBinary(BinaryWriter writer)Writes fields to provided writer.
-
-
-
Method Detail
-
entitySets
public String[] entitySets()
- Returns:
- Dependent entity sets with versions.
-
data
public byte[] data()
- Returns:
- Cached data bytes.
-
writeBinary
public void writeBinary(BinaryWriter writer) throws BinaryObjectException
Writes fields to provided writer.- Specified by:
writeBinaryin interfaceBinarylizable- Parameters:
writer- Binary object writer.- Throws:
BinaryObjectException- In case of error.
-
readBinary
public void readBinary(BinaryReader reader) throws BinaryObjectException
Reads fields from provided reader.- Specified by:
readBinaryin interfaceBinarylizable- Parameters:
reader- Binary object reader.- Throws:
BinaryObjectException- In case of error.
-
-