belliottsmith commented on code in PR #26:
URL: https://github.com/apache/cassandra-accord/pull/26#discussion_r1093761748
##########
accord-core/src/main/java/accord/primitives/Timestamp.java:
##########
@@ -19,12 +19,16 @@
package accord.primitives;
import accord.local.Node.Id;
-import accord.utils.Invariants;
+
+import static accord.utils.Invariants.checkArgument;
import javax.annotation.Nonnull;
public class Timestamp implements Comparable<Timestamp>
{
+ private static final int REJECTED_FLAG = 0x8000;
Review Comment:
I will comment. The idea here is that we probably don't want all flags to be
mergeable, though today we only have one flag.
##########
accord-core/src/main/java/accord/primitives/Timestamp.java:
##########
@@ -19,12 +19,16 @@
package accord.primitives;
import accord.local.Node.Id;
-import accord.utils.Invariants;
+
+import static accord.utils.Invariants.checkArgument;
import javax.annotation.Nonnull;
public class Timestamp implements Comparable<Timestamp>
{
+ private static final int REJECTED_FLAG = 0x8000;
Review Comment:
I will comment. The idea here is that we probably don't want all flags to be
mergeable, though today we only have one flag, and we do want it to propagate.
--
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]