Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-vinogradov committed Jul 24, 2024
1 parent c8b81dd commit 93d2e74
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,12 @@ public byte[] getValBytes() {
return valBytes;
}

/** {@inheritDoc} */
/** TODO {@inheritDoc} */
public byte getPreviousStateMetadataType() {
return prevStateMetaType;
}

/** {@inheritDoc} */
/** TODO {@inheritDoc} */
public byte[] getPreviousStateMetadataBytes() {
return prevStateMetaBytes;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public Object unwrappedValue() {
}
}

/** {@inheritDoc} */
/** TODO {@inheritDoc} */
public Object unwrappedPreviousStateMetadata() {
try {
return unwrapValue(prevStateMeta, keepBinary, cacheObjValCtx);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,7 @@ public void testReadOneByOneForBackup() throws Exception {
AtomicBoolean firstEvt = new AtomicBoolean(true);

CdcConsumer cnsmr = new CdcConsumer() {
@Override
public void start(MetricRegistry mreg) {
@Override public void start(MetricRegistry mreg) {
// No-op.
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ public GridCacheTestEntryEx(GridCacheContext context, KeyCacheObject key, CacheO
}

/** {@inheritDoc} */
@Override
public boolean initialValue(CacheObject val, GridCacheVersion ver, long ttl, long expireTime, boolean preload, AffinityTopologyVersion topVer, GridDrType drType, boolean fromStore, boolean primary, @Nullable CacheDataRow row) throws IgniteCheckedException, GridCacheEntryRemovedException {
@Override public boolean initialValue(CacheObject val, GridCacheVersion ver, long ttl, long expireTime, boolean preload,
AffinityTopologyVersion topVer, GridDrType drType, boolean fromStore, boolean primary, @Nullable CacheDataRow row)
throws IgniteCheckedException, GridCacheEntryRemovedException {
return false;
}

/** {@inheritDoc} */
@Override
public int memorySize() throws IgniteCheckedException {
@Override public int memorySize() throws IgniteCheckedException {
return 0;
}

Expand Down Expand Up @@ -537,8 +537,7 @@ public int memorySize() throws IgniteCheckedException {
}

/** {@inheritDoc} */
@Override
public @Nullable CacheObject unswap(boolean needVal) throws IgniteCheckedException, GridCacheEntryRemovedException {
@Override public @Nullable CacheObject unswap(boolean needVal) throws IgniteCheckedException, GridCacheEntryRemovedException {
return null;
}

Expand Down

0 comments on commit 93d2e74

Please sign in to comment.