Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-vinogradov committed Jul 29, 2024
1 parent 1798ee4 commit 7c69aac
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@
*/
public class LazyDataEntry extends DataEntry {
/** */
private GridCacheSharedContext cctx;
private final GridCacheSharedContext cctx;

/** Data Entry key type code. See {@link CacheObject} for built-in value type codes */
private byte keyType;
private final byte keyType;

/** Key value bytes. */
private byte[] keyBytes;
private final byte[] keyBytes;

/** Data Entry Value type code. See {@link CacheObject} for built-in value type codes */
private byte valType;
private final byte valType;

/** Value value bytes. */
private byte[] valBytes;
private final byte[] valBytes;

/** Previous entry state metadata bytes type code. See {@link CacheObject} for built-in value type codes */
private byte prevStateMetaType;
private final byte prevStateMetaType;

/** Previous entry state metadata bytes. */
private byte[] prevStateMetaBytes;
private final byte[] prevStateMetaBytes;

/**
* @param cctx Shared context.
Expand Down Expand Up @@ -174,12 +174,12 @@ public byte[] getValBytes() {
return valBytes;
}

/** TODO @inheritDoc} */
/** @return Previous state metadata type code. See {@link CacheObject} for built-in value type codes */
public byte getPreviousStateMetadataType() {
return prevStateMetaType;
}

/** TODO @inheritDoc} */
/** @return Previous state metadata value bytes. */
public byte[] getPreviousStateMetadataBytes() {
return prevStateMetaBytes;
}
Expand Down

0 comments on commit 7c69aac

Please sign in to comment.