alex-plekhanov commented on a change in pull request #6554: IGNITE-11073: 
Backup page store manager, initial
URL: https://github.com/apache/ignite/pull/6554#discussion_r380067965
 
 

 ##########
 File path: 
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IgniteSnapshotManager.java
 ##########
 @@ -1048,23 +1000,21 @@ public RemoteSnapshotFuture(UUID rmtNodeId, String 
snpName, int cnt) {
         }
     }
 
-    /**
-     *
-     */
-    private static class SerialExecutor implements Executor {
-        /** */
+    /** */
+    private static class SingleThreadExecutor implements Executor {
 
 Review comment:
   I think it's not a good name now, since tasks executed not in single thread, 
but can be executed on different threads sequentially. It's better to state in 
the class name that:
   1. This class is wrapper (doesn't implement any functionality to start 
threads etc, but use underlying executor instead).
   2.  Task executed sequentially, but not in the single thread.
   So, good names IMO would be something like `SerialExecutorWrapper`, 
`SequentialExecutorWrapper`, etc

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to