tkalkirill commented on code in PR #902:
URL: https://github.com/apache/ignite-3/pull/902#discussion_r910728311


##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/store/GroupPageStoreHolderMap.java:
##########
@@ -17,20 +17,21 @@
 
 package org.apache.ignite.internal.pagememory.persistence.store;
 
+import java.util.List;
 import java.util.Map;
 import java.util.concurrent.ConcurrentHashMap;
 import java.util.function.BiFunction;
 import java.util.function.Function;
 
 /**
- * Proxy class for map (grpId -> page store holder) that wraps data adding and 
replacing operations to disallow concurrent execution
+ * Proxy class for map (grpId -> page store list) that wraps data adding and 
replacing operations to disallow concurrent execution
  * simultaneously with cleanup of file page storage.
  *
  * <p>Wrapping of data removing operations is not needed.
  *
  * @param <T> Type of {@link PageStore}.
  */
-class GroupPageStoreHolderMap<T extends PageStore> extends 
ConcurrentHashMap<Integer, GroupPageStoreHolder<T>> {
+class GroupPageStoreHolderMap<T extends PageStore> extends 
ConcurrentHashMap<Integer, List<T>> {

Review Comment:
   Made a composition.



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