ibessonov commented on a change in pull request #208:
URL: https://github.com/apache/ignite-3/pull/208#discussion_r670452142
##########
File path:
modules/configuration/src/main/java/org/apache/ignite/internal/configuration/tree/NamedListNode.java
##########
@@ -18,22 +18,23 @@
package org.apache.ignite.internal.configuration.tree;
import java.util.Collections;
-import java.util.HashMap;
-import java.util.Map;
+import java.util.List;
import java.util.Objects;
-import java.util.Set;
import java.util.function.Consumer;
import java.util.function.Supplier;
import org.apache.ignite.configuration.NamedListChange;
-import org.apache.ignite.configuration.NamedListView;
+import org.apache.ignite.internal.configuration.util.OrderedMap;
/** */
-public final class NamedListNode<N extends InnerNode> implements
NamedListView<N>, NamedListChange<N>, TraversableTreeNode,
ConstructableTreeNode {
+public final class NamedListNode<N extends InnerNode> implements
NamedListChange<N>, TraversableTreeNode, ConstructableTreeNode {
+ /** Name of synthetic configuration property that describes order of
elements in named list. */
+ public static final String ORDER_IDX = "<idx>";
+
/** */
public final Supplier<N> valSupplier;
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]