w3ll1ngt commented on code in PR #12436:
URL: https://github.com/apache/ignite/pull/12436#discussion_r2469311084


##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicAbstractUpdateRequest.java:
##########
@@ -341,10 +390,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() {
-        return syncMode;
+    public void 
writeSynchronizationModeMessage(CacheWriteSynchronizationModeMessage 
writeSyncModeMsg) {

Review Comment:
   intended to keep name consistency with similar logic, realised in 
IGNITE-26576
   
   
https://github.com/apache/ignite/blob/d4d5006946280bdbdb2018e35454b66ae6371e4d/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridNearAtomicAbstractUpdateRequest.java#L349



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

Reply via email to