Uses of Interface
org.infinispan.functional.EntryView.ReadWriteEntryView
-
Packages that use EntryView.ReadWriteEntryView Package Description org.infinispan.atomic.impl org.infinispan.commands Commands that operate on the cache, either locally or remotely.org.infinispan.commands.functional org.infinispan.commands.functional.functions org.infinispan.functional Functional API packageorg.infinispan.functional.impl org.infinispan.marshall.core -
-
Uses of EntryView.ReadWriteEntryView in org.infinispan.atomic.impl
Methods in org.infinispan.atomic.impl with parameters of type EntryView.ReadWriteEntryView Modifier and Type Method Description Object
ApplyDelta. apply(Object d, EntryView.ReadWriteEntryView<K,Object> view)
-
Uses of EntryView.ReadWriteEntryView in org.infinispan.commands
Method parameters in org.infinispan.commands with type arguments of type EntryView.ReadWriteEntryView Modifier and Type Method Description <K,V,R>
ReadWriteKeyCommand<K,V,R>CommandsFactory. buildReadWriteKeyCommand(Object key, Function<EntryView.ReadWriteEntryView<K,V>,R> f, int segment, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
<K,V,R>
ReadWriteKeyCommand<K,V,R>CommandsFactoryImpl. buildReadWriteKeyCommand(Object key, Function<EntryView.ReadWriteEntryView<K,V>,R> f, int segment, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
<K,V,T,R>
ReadWriteKeyValueCommand<K,V,T,R>CommandsFactory. buildReadWriteKeyValueCommand(Object key, Object argument, BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R> f, int segment, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
<K,V,T,R>
ReadWriteKeyValueCommand<K,V,T,R>CommandsFactoryImpl. buildReadWriteKeyValueCommand(Object key, Object argument, BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R> f, int segment, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
<K,V,R>
ReadWriteManyCommand<K,V,R>CommandsFactory. buildReadWriteManyCommand(Collection<?> keys, Function<EntryView.ReadWriteEntryView<K,V>,R> f, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
<K,V,R>
ReadWriteManyCommand<K,V,R>CommandsFactoryImpl. buildReadWriteManyCommand(Collection<?> keys, Function<EntryView.ReadWriteEntryView<K,V>,R> f, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
<K,V,T,R>
ReadWriteManyEntriesCommand<K,V,T,R>CommandsFactory. buildReadWriteManyEntriesCommand(Map<?,?> entries, BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R> f, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
<K,V,T,R>
ReadWriteManyEntriesCommand<K,V,T,R>CommandsFactoryImpl. buildReadWriteManyEntriesCommand(Map<?,?> entries, BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R> f, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
-
Uses of EntryView.ReadWriteEntryView in org.infinispan.commands.functional
Methods in org.infinispan.commands.functional that return types with arguments of type EntryView.ReadWriteEntryView Modifier and Type Method Description BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R>
ReadWriteKeyValueCommand. getBiFunction()
Function<EntryView.ReadWriteEntryView<K,V>,R>
ReadWriteManyCommand. getBiFunction()
BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R>
ReadWriteManyEntriesCommand. getBiFunction()
Function<EntryView.ReadWriteEntryView<K,V>,R>
ReadWriteKeyCommand. getFunction()
Methods in org.infinispan.commands.functional with parameters of type EntryView.ReadWriteEntryView Modifier and Type Method Description R
Mutation. apply(EntryView.ReadWriteEntryView<K,V> view)
Mutate the view -
Uses of EntryView.ReadWriteEntryView in org.infinispan.commands.functional.functions
Methods in org.infinispan.commands.functional.functions with parameters of type EntryView.ReadWriteEntryView Modifier and Type Method Description V
MergeFunction. apply(EntryView.ReadWriteEntryView<K,V> entry)
-
Uses of EntryView.ReadWriteEntryView in org.infinispan.functional
Method parameters in org.infinispan.functional with type arguments of type EntryView.ReadWriteEntryView Modifier and Type Method Description <R> CompletableFuture<R>
FunctionalMap.ReadWriteMap. eval(K key, Function<EntryView.ReadWriteEntryView<K,V>,R> f)
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, 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, 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(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, 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, SerializableFunction<EntryView.ReadWriteEntryView<K,V>,R> f)
Same asFunctionalMap.ReadWriteMap.evalMany(Set, Function)
except that the function must also implementSerializable
-
Uses of EntryView.ReadWriteEntryView in org.infinispan.functional.impl
Subinterfaces of EntryView.ReadWriteEntryView in org.infinispan.functional.impl Modifier and Type Interface Description static interface
EntryViews.AccessLoggingReadWriteView<K,V>
Method parameters in org.infinispan.functional.impl with type arguments of type EntryView.ReadWriteEntryView Modifier and Type Method Description <R> CompletableFuture<R>
ReadWriteMapImpl. eval(K key, Function<EntryView.ReadWriteEntryView<K,V>,R> f)
<T,R>
CompletableFuture<R>ReadWriteMapImpl. eval(K key, T argument, BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R> f)
<R> Traversable<R>
ReadWriteMapImpl. evalAll(Function<EntryView.ReadWriteEntryView<K,V>,R> f)
<T,R>
Traversable<R>ReadWriteMapImpl. evalMany(Map<? extends K,? extends T> arguments, BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R> f)
<R> Traversable<R>
ReadWriteMapImpl. evalMany(Set<? extends K> keys, Function<EntryView.ReadWriteEntryView<K,V>,R> f)
-
Uses of EntryView.ReadWriteEntryView in org.infinispan.marshall.core
-