Erixonich commented on code in PR #5836:
URL: https://github.com/apache/ignite-3/pull/5836#discussion_r2705614904


##########
modules/api/src/main/java/org/apache/ignite/table/KeyValueView.java:
##########
@@ -332,13 +681,34 @@ public interface KeyValueView<K, V> extends 
DataStreamerTarget<Entry<K, V>>, Cri
      */
     CompletableFuture<Boolean> removeAsync(@Nullable Transaction tx, K key, V 
val);
 
+    /**
+     * Asynchronously removes from a table an expected value associated with 
the given key.
+     * Opens implicit transaction.
+     *
+     * @param key Key whose value is to be removed from the table. The key 
cannot be {@code null}.
+     * @param val Expected value.
+     * @return Future that represents the pending completion of the operation.
+     * @throws MarshallerException if the key and/or the value doesn't match 
the schema.
+     */
+    default CompletableFuture<Boolean> removeAsync(K key, V val) {

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]

Reply via email to