shishkovilja commented on code in PR #13095:
URL: https://github.com/apache/ignite/pull/13095#discussion_r3657210095


##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryEntry.java:
##########
@@ -359,35 +324,38 @@ CacheObject oldValue() {
         return depInfo;
     }
 
-
     /** {@inheritDoc} */
-    @Override public String toString() {
-        return S.toString(CacheContinuousQueryEntry.class, this);
+    @Override public void marshal(Marshaller marsh) throws 
IgniteCheckedException {
+        if (!isFiltered()) {
+            keyWire = key;
+            newValWire = newVal;
+            oldValWire = oldVal;
+        }
     }
 
     /** {@inheritDoc} */
-    @Override public void prepareMarshal(Marshaller marsh) throws 
IgniteCheckedException {
-        if (!isFiltered()) {
-            if (key != null)
-                keyBytes = marsh.marshal(key);
+    @Override public void unmarshal(Marshaller marsh, ClassLoader clsLdr) 
throws IgniteCheckedException {

Review Comment:
   Should be refactored, may be i a separate ticket.



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to