jberragan commented on code in PR #99:
URL: 
https://github.com/apache/cassandra-analytics/pull/99#discussion_r2001374156


##########
cassandra-analytics-cdc/src/main/java/org/apache/cassandra/cdc/CdcBuilder.java:
##########
@@ -41,26 +41,26 @@
 public class CdcBuilder
 {
     @NotNull
-    final String jobId;
-    final int partitionId;
+    protected final String jobId;
+    protected final int partitionId;
     @NotNull
     TokenRangeSupplier tokenRangeSupplier = () -> null;
     @NotNull
-    SchemaSupplier schemaSupplier;
+    protected SchemaSupplier schemaSupplier;
     @NotNull
     CassandraSource cassandraSource = CassandraSource.DEFAULT;
     @NotNull
     StatePersister statePersister = StatePersister.STUB;
     @NotNull
-    CdcOptions cdcOptions = CdcOptions.DEFAULT;
+    protected CdcOptions cdcOptions = CdcOptions.DEFAULT;
     @NotNull
     ICdcStats stats = ICdcStats.STUB;
     @Nullable
-    AsyncExecutor asyncExecutor = null;
+    protected AsyncExecutor asyncExecutor = null;
     @Nullable
-    CommitLogProvider commitLogProvider = null;
+    protected CommitLogProvider commitLogProvider = null;
     @NotNull
-    EventConsumer eventConsumer;
+    protected EventConsumer eventConsumer;
     @NotNull

Review Comment:
   Yes.



-- 
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]

Reply via email to