From d3113e20c4a26ad74d4788ad100f5b53f6e0085f Mon Sep 17 00:00:00 2001 From: Anton Vinogradov Date: Mon, 29 Jul 2024 14:43:29 +0300 Subject: [PATCH] WIP --- .../internal/pagemem/wal/record/UnwrapDataEntry.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/core/src/main/java/org/apache/ignite/internal/pagemem/wal/record/UnwrapDataEntry.java b/modules/core/src/main/java/org/apache/ignite/internal/pagemem/wal/record/UnwrapDataEntry.java index c4f12703e3241c..9d9b1503378eaf 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/pagemem/wal/record/UnwrapDataEntry.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/pagemem/wal/record/UnwrapDataEntry.java @@ -106,7 +106,12 @@ public Object unwrappedValue() { } } - /** TODO @inheritDoc} */ + /** + * Unwraps previous state metadata from cache value object into primitive boxed type or source class. If client classes were + * used in key, call of this method requires classes to be available in classpath. + * + * @return Previous state metadata which was placed into cache. Or null for delete operation or for failure. + */ public Object unwrappedPreviousStateMetadata() { try { return unwrapValue(prevStateMeta, keepBinary, cacheObjValCtx);