maedhroz commented on code in PR #24:
URL: https://github.com/apache/cassandra-harry/pull/24#discussion_r1417972496
##########
harry-core/src/harry/visitors/VisitExecutor.java:
##########
@@ -19,14 +19,105 @@
package harry.visitors;
import harry.model.OpSelectors;
+import harry.operations.Query;
+import harry.util.BitSet;
public abstract class VisitExecutor
{
protected abstract void beforeLts(long lts, long pd);
protected abstract void afterLts(long lts, long pd);
- protected abstract void operation(long lts, long pd, long cd, long opId,
OpSelectors.OperationKind kind);
+ protected abstract void operation(Operation operation);
public abstract void shutdown() throws InterruptedException;
+
+ public interface WriteOp extends Operation
+ {
+ long pd();
Review Comment:
nit: Already inherits `pd()` from `Operation`?
--
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]