use of org.apache.ignite.internal.processors.cache.CacheObjectValueContext in project ignite by apache.
the class GridH2CacheObject method value.
/** {@inheritDoc} */
@Override
public Value value(GridKernalContext ctx) throws IgniteCheckedException {
CacheObjectValueContext valCtx = ctx.query().objectContext();
obj.finishUnmarshal(valCtx, ctx.cache().context().deploy().globalLoader());
return new GridH2ValueCacheObject(obj, valCtx);
}
Aggregations