wernerdv commented on code in PR #13254:
URL: https://github.com/apache/ignite/pull/13254#discussion_r3593226549
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CacheClientReconnectDiscoveryData.java:
##########
@@ -17,175 +17,30 @@
package org.apache.ignite.internal.processors.cache;
-import java.io.Serializable;
import java.util.Map;
-import org.apache.ignite.configuration.CacheConfiguration;
+import org.apache.ignite.internal.Order;
import org.apache.ignite.internal.util.typedef.internal.S;
-import org.apache.ignite.lang.IgniteUuid;
-
-/**
- * Discovery data sent from client reconnecting to cluster.
- */
-public class CacheClientReconnectDiscoveryData implements Serializable {
- /** */
- private static final long serialVersionUID = 0L;
+import org.apache.ignite.plugin.extensions.communication.Message;
+/** Discovery data sent from client reconnecting to cluster. */
+public class CacheClientReconnectDiscoveryData implements Message {
/** */
- private final Map<Integer, CacheGroupInfo> clientCacheGrps;
+ @Order(0)
+ Map<String, CacheReconnectInfo> clientCaches;
/** */
Review Comment:
```suggestion
/** Default constructor for {@link MessageFactory}. */
```
--
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]