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 aCompletableFuturewith 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.WriteEntryViewof the value associated with the key, and return aCompletableFuturewhich 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-writeFunctionoperation with theEntryView.ReadWriteEntryViewof the value associated with the key, for all existing keys, and returns aTraversableto navigate each of theFunctioninvocation 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.ReadWriteEntryViewof the value associated with the key, for each of the keys in the set passed in, and returns anTraversableto navigate each of theBiFunctioninvocation 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-writeFunctionoperation with theEntryView.ReadWriteEntryViewof the value associated with the key, for each of the keys in the set passed in, and returns aTraversableto navigate each of theFunctioninvocation 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