shishkovilja commented on code in PR #13129:
URL: https://github.com/apache/ignite/pull/13129#discussion_r3242746949
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/verify/TransactionsHashRecord.java:
##########
@@ -17,26 +17,36 @@
package org.apache.ignite.internal.processors.cache.verify;
+import java.io.Serializable;
+import org.apache.ignite.IgniteCheckedException;
+import org.apache.ignite.internal.MarshallableMessage;
import org.apache.ignite.internal.Order;
-import org.apache.ignite.internal.dto.IgniteDataTransferObject;
import org.apache.ignite.internal.util.tostring.GridToStringInclude;
import org.apache.ignite.internal.util.typedef.internal.S;
+import org.apache.ignite.internal.util.typedef.internal.U;
+import org.apache.ignite.marshaller.Marshaller;
/** Represents committed transactions hash for a pair of nodes. */
-public class TransactionsHashRecord extends IgniteDataTransferObject {
+public class TransactionsHashRecord implements MarshallableMessage,
Serializable {
Review Comment:
Do we need serializable? If we do, byte[] fields should become transient.
--
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]