aweisberg commented on code in PR #7:
URL: https://github.com/apache/cassandra-accord/pull/7#discussion_r1014316030
##########
accord-core/src/main/java/accord/primitives/Route.java:
##########
@@ -0,0 +1,49 @@
+package accord.primitives;
+
+import accord.api.RoutingKey;
+
+public class Route extends AbstractRoute
+{
+ public static class SerializationSupport
+ {
+ public static Route create(RoutingKey homeKey, RoutingKey[] keys)
+ {
+ return new Route(homeKey, keys);
+ }
+ }
+
+ public Route(RoutingKey homeKey, RoutingKey[] keys)
+ {
+ super(keys, homeKey);
+ }
+
+ @Override
+ public boolean covers(KeyRanges ranges)
+ {
+ return true;
Review Comment:
FYI I don't think you pushed this change yet.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]