ptupitsyn commented on a change in pull request #8174:
URL: https://github.com/apache/ignite/pull/8174#discussion_r492931356



##########
File path: modules/core/src/main/java/org/apache/ignite/client/IgniteClient.java
##########
@@ -57,25 +72,50 @@
      */
     public Collection<String> cacheNames() throws ClientException;
 
+    /**
+     * @return Collection of names of currently available caches or an empty 
collection if no caches are available.
+     */
+    public IgniteClientFuture<Collection<String>> cacheNamesAsync() throws 
ClientException;
+
     /**
      * Destroy cache.
      */
     public void destroyCache(String name) throws ClientException;
 
+    /**
+     * Destroy cache.
+     */
+    public IgniteClientFuture<Void> destroyCacheAsync(String name) throws 
ClientException;
+
     /**
      * Create cache.
      *
      * @param name Cache name.
      */
     public <K, V> ClientCache<K, V> createCache(String name) throws 
ClientException;
 
+    /**
+     * Create cache.

Review comment:
       Fixed




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