shishkovilja commented on code in PR #12436:
URL: https://github.com/apache/ignite/pull/12436#discussion_r2498642775
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicAbstractUpdateRequest.java:
##########
@@ -341,10 +393,24 @@ public final GridCacheVersion writeVersion() {
}
/**
- * @return Cache write synchronization mode.
+ * @param writeVer New write version.
+ */
+ public void writeVersion(GridCacheVersion writeVer) {
+ this.writeVer = writeVer;
+ }
+
+ /**
+ * @return The write mode synchronization wrapper message.
+ */
+ public final CacheWriteSynchronizationModeMessage
writeSynchronizationModeMessage() {
+ return syncModeMsg;
+ }
+
+ /**
+ * @param writeSyncModeMsg Write syncronization mode wrapper message.
*/
- public final CacheWriteSynchronizationMode writeSynchronizationMode() {
Review Comment:
I don't see any usage of this method. Do we need to keep information about
sync mode at all?
--
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]