belliottsmith commented on code in PR #7:
URL: https://github.com/apache/cassandra-accord/pull/7#discussion_r1012858032
##########
accord-core/src/main/java/accord/messages/InformHomeDurable.java:
##########
@@ -0,0 +1,53 @@
+package accord.messages;
+
+import java.util.Set;
+
+import accord.api.RoutingKey;
+import accord.local.Command;
+import accord.local.Node;
+import accord.local.Node.Id;
+import accord.local.Status.Durability;
+import accord.primitives.Timestamp;
+import accord.primitives.TxnId;
+
+import static accord.local.PreLoadContext.contextFor;
+
+public class InformHomeDurable implements Request
+{
+ public final TxnId txnId;
+ public final RoutingKey homeKey;
+ public final Timestamp executeAt;
+ public final Durability durability;
+ public final Set<Id> persistedOn;
+
+ public InformHomeDurable(TxnId txnId, RoutingKey homeKey, Timestamp
executeAt, Durability durability, Set<Id> persistedOn)
Review Comment:
I was leaving scope for other progress log implementations to send a higher
level, but in addressing another comment we now send it ourselves anyway
--
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]