ptupitsyn commented on a change in pull request #191: URL: https://github.com/apache/ignite-3/pull/191#discussion_r675358777
########## File path: modules/client-handler/src/test/java/org/apache/ignite/client/handler/TestConfigurationStorage.java ########## @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.client.handler; + +import org.apache.ignite.configuration.annotation.ConfigurationType; +import org.apache.ignite.internal.configuration.storage.ConfigurationStorage; +import org.apache.ignite.internal.configuration.storage.ConfigurationStorageListener; +import org.apache.ignite.internal.configuration.storage.Data; +import org.apache.ignite.internal.configuration.storage.StorageException; + +import java.io.Serializable; +import java.util.Collections; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.CompletableFuture; + +/** + * Test configuration storage. + */ +public class TestConfigurationStorage implements ConfigurationStorage { + /** Listeners. */ + private final Set<ConfigurationStorageListener> listeners = new HashSet<>(); + + /** Configuration type. */ + private final ConfigurationType type; + + /** + * @param type Configuration type. + */ + public TestConfigurationStorage(ConfigurationType type) { + this.type = type; + } + + /** {@inheritDoc} */ + @Override public Data readAll() throws StorageException { + return new Data(Collections.emptyMap(), 0); + } + + /** {@inheritDoc} */ + @Override public CompletableFuture<Boolean> write(Map<String, Serializable> newValues, long version) { + for (ConfigurationStorageListener listener : listeners) + listener.onEntriesChanged(new Data(newValues, version + 1)); + + return CompletableFuture.completedFuture(true); + } + + /** {@inheritDoc} */ + @Override public void registerConfigurationListener(ConfigurationStorageListener listener) { + listeners.add(listener); + } + Review comment: See above, I don't think we need to care about javadoc in tests - waste of time. -- 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]
