Uses of Interface
org.infinispan.functional.EntryView.ReadWriteEntryView
Packages that use EntryView.ReadWriteEntryView
-
Uses of EntryView.ReadWriteEntryView in org.infinispan.functional
Method parameters in org.infinispan.functional with type arguments of type EntryView.ReadWriteEntryViewModifier and TypeMethodDescription<R> CompletableFuture<R>
Evaluate a read-write function on the value and metadata associated with the key and return aCompletableFuture
with the return type of the function.default <R> CompletableFuture<R>
FunctionalMap.ReadWriteMap.eval
(K key, org.infinispan.util.function.SerializableFunction<EntryView.ReadWriteEntryView<K, V>, R> f) Same asFunctionalMap.ReadWriteMap.eval(Object, Function)
except that the function must also implementSerializable
<T,
R> CompletableFuture<R> FunctionalMap.ReadWriteMap.eval
(K key, T argument, BiFunction<T, EntryView.ReadWriteEntryView<K, V>, R> f) Evaluate a read-write function, with an argument passed in and aEntryView.WriteEntryView
of the value associated with the key, and return aCompletableFuture
which will be completed with the returned value by the function.default <T,
R> CompletableFuture<R> FunctionalMap.ReadWriteMap.eval
(K key, T argument, org.infinispan.util.function.SerializableBiFunction<T, EntryView.ReadWriteEntryView<K, V>, R> f) Same asFunctionalMap.ReadWriteMap.eval(Object, Object, BiFunction)
except that the function must also implementSerializable
<R> Traversable<R>
FunctionalMap.ReadWriteMap.evalAll
(Function<EntryView.ReadWriteEntryView<K, V>, R> f) Evaluate a read-writeFunction
operation with theEntryView.ReadWriteEntryView
of the value associated with the key, for all existing keys, and returns aTraversable
to navigate each of theFunction
invocation returns.default <R> Traversable<R>
FunctionalMap.ReadWriteMap.evalAll
(org.infinispan.util.function.SerializableFunction<EntryView.ReadWriteEntryView<K, V>, R> f) Same asFunctionalMap.ReadWriteMap.evalAll(Function)
except that the function must also implementSerializable
<T,
R> Traversable<R> FunctionalMap.ReadWriteMap.evalMany
(Map<? extends K, ? extends T> arguments, BiFunction<T, EntryView.ReadWriteEntryView<K, V>, R> f) Evaluate a read-writeBiFunction
, with an argument passed in and aEntryView.ReadWriteEntryView
of the value associated with the key, for each of the keys in the set passed in, and returns anTraversable
to navigate each of theBiFunction
invocation returns.default <T,
R> Traversable<R> FunctionalMap.ReadWriteMap.evalMany
(Map<? extends K, ? extends T> arguments, org.infinispan.util.function.SerializableBiFunction<T, EntryView.ReadWriteEntryView<K, V>, R> f) Same asFunctionalMap.ReadWriteMap.evalMany(Map, BiFunction)
except that the function must also implementSerializable
<R> Traversable<R>
FunctionalMap.ReadWriteMap.evalMany
(Set<? extends K> keys, Function<EntryView.ReadWriteEntryView<K, V>, R> f) Evaluate a read-writeFunction
operation with theEntryView.ReadWriteEntryView
of the value associated with the key, for each of the keys in the set passed in, and returns aTraversable
to navigate each of theFunction
invocation returns.default <R> Traversable<R>
FunctionalMap.ReadWriteMap.evalMany
(Set<? extends K> keys, org.infinispan.util.function.SerializableFunction<EntryView.ReadWriteEntryView<K, V>, R> f) Same asFunctionalMap.ReadWriteMap.evalMany(Set, Function)
except that the function must also implementSerializable