Cyrill commented on code in PR #3496:
URL: https://github.com/apache/ignite-3/pull/3496#discussion_r1547715510
##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/message/TxCleanupMessageResponse.java:
##########
@@ -17,12 +17,18 @@
package org.apache.ignite.internal.tx.message;
+import org.apache.ignite.internal.network.annotations.Marshallable;
import org.apache.ignite.internal.network.annotations.Transferable;
import org.apache.ignite.internal.replicator.message.TimestampAware;
+import org.jetbrains.annotations.Nullable;
/**
* Cleanup transaction message response.
*/
@Transferable(TxMessageGroup.TX_CLEANUP_MSG_RESPONSE)
public interface TxCleanupMessageResponse extends TimestampAware {
+
+ @Nullable
+ @Marshallable
+ Object result();
Review Comment:
done
##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/TxStateMeta.java:
##########
@@ -43,6 +43,8 @@ public class TxStateMeta implements TransactionMeta {
private final Long initialVacuumObservationTimestamp;
+ private final Long cleanupCompletionTimestamp;
Review Comment:
done
--
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]