Uses of Interface
org.apache.ignite.internal.processors.cache.CacheObjectValueContext
-
Packages that use CacheObjectValueContext Package Description org.apache.ignite.internal.binary Contains binary APIs internal implementation.org.apache.ignite.internal.cache.query.index.sorted.keys org.apache.ignite.internal.pagemem.wal.record org.apache.ignite.internal.processors.cache This package contain cache-related processors & persistence implementation.org.apache.ignite.internal.processors.cache.binary Implementation of binary processor.org.apache.ignite.internal.processors.cache.transactions org.apache.ignite.internal.processors.cache.version org.apache.ignite.internal.processors.cacheobject Cache object processor.org.apache.ignite.internal.processors.query -
-
Uses of CacheObjectValueContext in org.apache.ignite.internal.binary
Methods in org.apache.ignite.internal.binary with parameters of type CacheObjectValueContext Modifier and Type Method Description voidBinaryEnumObjectImpl. finishUnmarshal(CacheObjectValueContext ctx, ClassLoader ldr)voidBinaryObjectImpl. finishUnmarshal(CacheObjectValueContext ctx, ClassLoader ldr)voidBinaryObjectOffheapImpl. finishUnmarshal(CacheObjectValueContext ctx, ClassLoader ldr)voidBinaryEnumObjectImpl. prepareMarshal(CacheObjectValueContext ctx)voidBinaryObjectImpl. prepareMarshal(CacheObjectValueContext ctx)voidBinaryObjectOffheapImpl. prepareMarshal(CacheObjectValueContext ctx)<T> TBinaryEnumObjectImpl. value(CacheObjectValueContext ctx, boolean cpy)<T> TBinaryEnumObjectImpl. value(CacheObjectValueContext ctx, boolean cpy, ClassLoader ldr)Deserializes a value from an internal representation.<T> TBinaryObjectImpl. value(CacheObjectValueContext ctx, boolean cpy)<T> TBinaryObjectImpl. value(CacheObjectValueContext ctx, boolean cpy, ClassLoader ldr)Deserializes a value from an internal representation.<T> TBinaryObjectOffheapImpl. value(CacheObjectValueContext ctx, boolean cpy)<T> TBinaryObjectOffheapImpl. value(CacheObjectValueContext ctx, boolean cpy, ClassLoader ldr)Deserializes a value from an internal representation.byte[]BinaryEnumObjectImpl. valueBytes(CacheObjectValueContext cacheCtx)byte[]BinaryObjectImpl. valueBytes(CacheObjectValueContext ctx)byte[]BinaryObjectOffheapImpl. valueBytes(CacheObjectValueContext ctx) -
Uses of CacheObjectValueContext in org.apache.ignite.internal.cache.query.index.sorted.keys
Methods in org.apache.ignite.internal.cache.query.index.sorted.keys with parameters of type CacheObjectValueContext Modifier and Type Method Description static IndexKeyIndexKeyFactory. wrap(Object o, int keyType, CacheObjectValueContext coctx, IndexKeyTypeSettings keyTypeSettings)Wraps user object toIndexKeyobject.static IndexKeyIndexKeyFactory. wrap(Object o, IndexKeyType keyType, CacheObjectValueContext coctx, IndexKeyTypeSettings keyTypeSettings)Wraps user object toIndexKeyobject.Constructors in org.apache.ignite.internal.cache.query.index.sorted.keys with parameters of type CacheObjectValueContext Constructor Description CacheJavaObjectIndexKey(CacheObject obj, CacheObjectValueContext valCtx)Constructor. -
Uses of CacheObjectValueContext in org.apache.ignite.internal.pagemem.wal.record
Methods in org.apache.ignite.internal.pagemem.wal.record with parameters of type CacheObjectValueContext Modifier and Type Method Description static ObjectUnwrapDataEntry. unwrapKey(KeyCacheObject key, boolean keepBinary, CacheObjectValueContext cacheObjValCtx)static ObjectUnwrapDataEntry. unwrapValue(CacheObject val, boolean keepBinary, CacheObjectValueContext cacheObjValCtx)Constructors in org.apache.ignite.internal.pagemem.wal.record with parameters of type CacheObjectValueContext Constructor Description UnwrapDataEntry(int cacheId, KeyCacheObject key, CacheObject val, GridCacheOperation op, GridCacheVersion nearXidVer, GridCacheVersion writeVer, long expireTime, int partId, long partCnt, CacheObjectValueContext cacheObjValCtx, boolean keepBinary, byte flags) -
Uses of CacheObjectValueContext in org.apache.ignite.internal.processors.cache
Classes in org.apache.ignite.internal.processors.cache that implement CacheObjectValueContext Modifier and Type Class Description classCacheObjectContextMethods in org.apache.ignite.internal.processors.cache with parameters of type CacheObjectValueContext Modifier and Type Method Description voidCacheObject. finishUnmarshal(CacheObjectValueContext ctx, ClassLoader ldr)voidCacheObjectByteArrayImpl. finishUnmarshal(CacheObjectValueContext ctx, ClassLoader ldr)voidCacheObjectImpl. finishUnmarshal(CacheObjectValueContext ctx, ClassLoader ldr)voidKeyCacheObjectImpl. finishUnmarshal(CacheObjectValueContext ctx, ClassLoader ldr)protected booleanCacheObjectAdapter. needCopy(CacheObjectValueContext ctx)voidCacheObject. prepareMarshal(CacheObjectValueContext ctx)voidCacheObjectByteArrayImpl. prepareMarshal(CacheObjectValueContext ctx)voidCacheObjectImpl. prepareMarshal(CacheObjectValueContext ctx)voidKeyCacheObjectImpl. prepareMarshal(CacheObjectValueContext ctx)static byte[]CacheObjectTransformerUtils. restoreIfNecessary(byte[] bytes, CacheObjectValueContext ctx)Restores transformed bytes if necessary.static byte[]CacheObjectTransformerUtils. transformIfNecessary(byte[] bytes, int offset, int length, CacheObjectValueContext ctx)Transforms bytes according toCacheObjectTransformerProcessorwhen specified.static byte[]CacheObjectTransformerUtils. transformIfNecessary(byte[] bytes, CacheObjectValueContext ctx)Transforms bytes according toCacheObjectTransformerProcessorwhen specified.static Collection<Object>CacheObjectUtils. unwrapBinariesIfNeeded(CacheObjectValueContext ctx, Collection<?> col, boolean keepBinary)static ObjectCacheObjectUtils. unwrapBinary(CacheObjectValueContext ctx, Object o, boolean keepBinary, boolean cpy, @Nullable ClassLoader ldr)Unwraps an object for end user.static ObjectCacheObjectUtils. unwrapBinaryIfNeeded(CacheObjectValueContext ctx, Object o, boolean keepBinary, boolean cpy, @Nullable ClassLoader ldr)static ObjectCacheObjectUtils. unwrapBinaryIfNeeded(CacheObjectValueContext ctx, CacheObject o, boolean keepBinary, boolean cpy)<T> TCacheObject. value(CacheObjectValueContext ctx, boolean cpy)<T> TCacheObject. value(CacheObjectValueContext ctx, boolean cpy, ClassLoader ldr)Deserializes a value from an internal representation.<T> TCacheObjectByteArrayImpl. value(CacheObjectValueContext ctx, boolean cpy)<T> TCacheObjectByteArrayImpl. value(CacheObjectValueContext ctx, boolean cpy, ClassLoader ldr)Deserializes a value from an internal representation.<T> TCacheObjectImpl. value(CacheObjectValueContext ctx, boolean cpy)<T> TCacheObjectImpl. value(CacheObjectValueContext ctx, boolean cpy, ClassLoader ldr)Deserializes a value from an internal representation.<T> TKeyCacheObjectImpl. value(CacheObjectValueContext ctx, boolean cpy)<T> TKeyCacheObjectImpl. value(CacheObjectValueContext ctx, boolean cpy, ClassLoader ldr)Deserializes a value from an internal representation.byte[]CacheObject. valueBytes(CacheObjectValueContext ctx)byte[]CacheObjectByteArrayImpl. valueBytes(CacheObjectValueContext ctx)byte[]CacheObjectImpl. valueBytes(CacheObjectValueContext ctx)byte[]KeyCacheObjectImpl. valueBytes(CacheObjectValueContext ctx)protected byte[]CacheObjectAdapter. valueBytesFromValue(CacheObjectValueContext ctx)protected ObjectCacheObjectAdapter. valueFromValueBytes(CacheObjectValueContext ctx, ClassLoader ldr) -
Uses of CacheObjectValueContext in org.apache.ignite.internal.processors.cache.binary
Methods in org.apache.ignite.internal.processors.cache.binary with parameters of type CacheObjectValueContext Modifier and Type Method Description byte[]CacheObjectBinaryProcessorImpl. marshal(CacheObjectValueContext ctx, Object val)ObjectCacheObjectBinaryProcessorImpl. unmarshal(CacheObjectValueContext ctx, byte[] bytes, ClassLoader clsLdr) -
Uses of CacheObjectValueContext in org.apache.ignite.internal.processors.cache.transactions
Methods in org.apache.ignite.internal.processors.cache.transactions with parameters of type CacheObjectValueContext Modifier and Type Method Description voidTxEntryValueHolder. unmarshal(CacheObjectValueContext ctx, ClassLoader ldr) -
Uses of CacheObjectValueContext in org.apache.ignite.internal.processors.cache.version
Methods in org.apache.ignite.internal.processors.cache.version that return CacheObjectValueContext Modifier and Type Method Description CacheObjectValueContextGridCacheVersionConflictContext. valueContext()Gets cache object context.Methods in org.apache.ignite.internal.processors.cache.version with parameters of type CacheObjectValueContext Modifier and Type Method Description <K,V>
GridCacheVersionConflictContext<K,V>CacheVersionConflictResolver. resolve(CacheObjectValueContext ctx, GridCacheVersionedEntryEx<K,V> oldEntry, GridCacheVersionedEntryEx<K,V> newEntry, boolean atomicVerComparator)Resolve the conflict.VGridCacheLazyPlainVersionedEntry. value(CacheObjectValueContext ctx)Gets entry's value.VGridCachePlainVersionedEntry. value(CacheObjectValueContext ctx)Gets entry's value.VGridCacheRawVersionedEntry. value(CacheObjectValueContext ctx)Gets entry's value.VGridCacheVersionedEntry. value(CacheObjectValueContext ctx)Gets entry's value.Constructors in org.apache.ignite.internal.processors.cache.version with parameters of type CacheObjectValueContext Constructor Description GridCacheVersionConflictContext(CacheObjectValueContext ctx, GridCacheVersionedEntry<K,V> oldEntry, GridCacheVersionedEntry<K,V> newEntry)Constructor. -
Uses of CacheObjectValueContext in org.apache.ignite.internal.processors.cacheobject
Methods in org.apache.ignite.internal.processors.cacheobject with parameters of type CacheObjectValueContext Modifier and Type Method Description byte[]IgniteCacheObjectProcessor. marshal(CacheObjectValueContext ctx, Object val)ObjectIgniteCacheObjectProcessor. unmarshal(CacheObjectValueContext ctx, byte[] bytes, ClassLoader clsLdr)<T> TUserCacheObjectByteArrayImpl. value(CacheObjectValueContext ctx, boolean cpy)<T> TUserCacheObjectByteArrayImpl. value(CacheObjectValueContext ctx, boolean cpy, ClassLoader ldr)Deserializes a value from an internal representation.<T> TUserCacheObjectImpl. value(CacheObjectValueContext ctx, boolean cpy) -
Uses of CacheObjectValueContext in org.apache.ignite.internal.processors.query
Classes in org.apache.ignite.internal.processors.query that implement CacheObjectValueContext Modifier and Type Class Description classCacheQueryObjectValueContextCache object value context for queries.Constructors in org.apache.ignite.internal.processors.query with parameters of type CacheObjectValueContext Constructor Description GridQueryCacheObjectsIterator(Iterator<List<?>> iter, CacheObjectValueContext cacheObjValCtx, boolean keepBinary)
-