java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.eval(K key,
java.util.function.Consumer<EntryView.WriteEntryView<K,V>> f) |
Evaluate a write-only Consumer operation with a
EntryView.WriteEntryView of the value associated with the key,
and return a CompletableFuture which will be
completed with the object returned by the operation.
|
default java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.eval(K key,
org.infinispan.util.function.SerializableConsumer<EntryView.WriteEntryView<K,V>> f) |
|
<T> java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.eval(K key,
T argument,
java.util.function.BiConsumer<T,EntryView.WriteEntryView<K,V>> f) |
Evaluate a write-only BiConsumer operation, with an argument
passed in and a EntryView.WriteEntryView of the value associated with
the key, and return a CompletableFuture which will be
completed when the operation completes.
|
default <T> java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.eval(K key,
T argument,
org.infinispan.util.function.SerializableBiConsumer<T,EntryView.WriteEntryView<K,V>> f) |
|
java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.evalAll(java.util.function.Consumer<EntryView.WriteEntryView<K,V>> f) |
Evaluate a write-only Consumer operation with the
EntryView.WriteEntryView of the value associated with the key, for all
existing keys in functional map, and returns a CompletableFuture
that will be completed when the write-only operation has been executed
against all the entries.
|
default java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.evalAll(org.infinispan.util.function.SerializableConsumer<EntryView.WriteEntryView<K,V>> f) |
|
<T> java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.evalMany(java.util.Map<? extends K,? extends T> arguments,
java.util.function.BiConsumer<T,EntryView.WriteEntryView<K,V>> f) |
Evaluate a write-only BiConsumer operation, with an argument
passed in and a EntryView.WriteEntryView of the value associated with
the key, for each of the keys in the set passed in, and returns a
CompletableFuture that will be completed when the write-only
operation has been executed against all the entries.
|
default <T> java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.evalMany(java.util.Map<? extends K,? extends T> arguments,
org.infinispan.util.function.SerializableBiConsumer<T,EntryView.WriteEntryView<K,V>> f) |
|
java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.evalMany(java.util.Set<? extends K> keys,
java.util.function.Consumer<EntryView.WriteEntryView<K,V>> f) |
Evaluate a write-only Consumer operation with the
EntryView.WriteEntryView of the value associated with the key, for each
of the keys in the set passed in, and returns a
CompletableFuture that will be completed when the write-only
operation has been executed against all the entries.
|
default java.util.concurrent.CompletableFuture<java.lang.Void> |
FunctionalMap.WriteOnlyMap.evalMany(java.util.Set<? extends K> keys,
org.infinispan.util.function.SerializableConsumer<EntryView.WriteEntryView<K,V>> f) |
|