ibessonov commented on a change in pull request #56:
URL: https://github.com/apache/ignite-3/pull/56#discussion_r582904285



##########
File path: 
modules/configuration/src/main/java/org/apache/ignite/configuration/ConfigurationValue.java
##########
@@ -17,9 +17,20 @@
 
 package org.apache.ignite.configuration;
 
+import java.util.concurrent.Future;
+import 
org.apache.ignite.configuration.validation.ConfigurationValidationException;
+
 /**
  * Configuration value.
  * @param <VALUE> Type of the value.
  */
 public interface ConfigurationValue<VALUE> extends 
ConfigurationProperty<VALUE, VALUE> {
+
+    /**
+     * Change this configuration node value.
+     * @param change CHANGE object.
+     * @throws ConfigurationValidationException If validation failed.
+     */
+    //TODO Rename.
+    Future<Void> change(VALUE change) throws ConfigurationValidationException;

Review comment:
       Future can potentially throw that exception, not the method itself




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


Reply via email to