dschneider-pivotal commented on a change in pull request #5735:
URL: https://github.com/apache/geode/pull/5735#discussion_r525322597
##########
File path:
geode-core/src/main/java/org/apache/geode/internal/cache/EntrySnapshot.java
##########
@@ -123,6 +123,20 @@ public Object getRawValue(boolean forceCopy) {
return v;
}
+ /**
+ * If the value is available as a CachedDeserializable instance then return
it.
+ * Otherwise behave as if getValue() was called.
+ */
+ public Object getValuePreferringCachedDeserializable() {
+ checkEntryDestroyed();
+ Object v = this.regionEntry.getValue(null);
Review comment:
done
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]