jacek-lewandowski commented on code in PR #2894:
URL: https://github.com/apache/cassandra/pull/2894#discussion_r1404222296
##########
src/java/org/apache/cassandra/db/commitlog/CommitLogSegment.java:
##########
@@ -764,4 +763,18 @@ public CommitLogPosition getCommitLogPosition()
return new CommitLogPosition(segment.id, buffer.limit());
}
}
+
+ protected abstract static class Builder<S extends CommitLogSegment>
+ {
+ protected final AbstractCommitLogSegmentManager segmentManager;
+
+ public Builder(AbstractCommitLogSegmentManager segmentManager)
+ {
+ this.segmentManager = segmentManager;
+ }
+
+ public abstract S build();
Review Comment:
indeed
--
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]