nizhikov commented on code in PR #10314:
URL: https://github.com/apache/ignite/pull/10314#discussion_r1028281515
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IncrementalSnapshotFutureTaskResult.java:
##########
@@ -17,6 +17,21 @@
package org.apache.ignite.internal.processors.cache.persistence.snapshot;
-/** */
+import org.apache.ignite.internal.pagemem.wal.record.ConsistentCutFinishRecord;
+import org.apache.ignite.internal.processors.cache.persistence.wal.WALPointer;
+
+/** Result of active phase of incremental snapshot task. */
class IncrementalSnapshotFutureTaskResult {
+ /** Pointer to {@link ConsistentCutFinishRecord}. */
+ private final WALPointer incSnpPtr;
+
+ /** */
+ IncrementalSnapshotFutureTaskResult(WALPointer incSnpPtr) {
+ this.incSnpPtr = incSnpPtr;
+ }
+
+ /** */
+ public WALPointer snapshotPointer() {
Review Comment:
Let's rename this to actual meaning. - `consistentCutFinishPointer`?
--
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]