Uses of Interface
org.infinispan.util.function.SerializableFunction
-
Packages that use SerializableFunction Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform.org.infinispan.functional Functional API packageorg.infinispan.manager Cache manager API. -
-
Uses of SerializableFunction in org.infinispan
Methods in org.infinispan with parameters of type SerializableFunction Modifier and Type Method Description default VAdvancedCache. computeIfAbsent(K key, SerializableFunction<? super K,? extends V> mappingFunction, Metadata metadata)default VCache. computeIfAbsent(K key, SerializableFunction<? super K,? extends V> mappingFunction)OverloadedCache.computeIfAbsent(Object, Function)with InfinispanSerializableFunction.default VCache. computeIfAbsent(K key, SerializableFunction<? super K,? extends V> mappingFunction, long lifespan, TimeUnit lifespanUnit)OverloadedBasicCache.computeIfAbsent(Object, Function, long, TimeUnit)with InfinispanSerializableFunction.default VCache. computeIfAbsent(K key, SerializableFunction<? super K,? extends V> mappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit)OverloadedBasicCache.computeIfAbsent(Object, Function, long, TimeUnit, long, TimeUnit)with InfinispanSerializableFunction.default CompletableFuture<V>AdvancedCache. computeIfAbsentAsync(K key, SerializableFunction<? super K,? extends V> mappingFunction, Metadata metadata)default <R1> CacheStream<R1>CacheStream. flatMap(SerializableFunction<? super R,? extends Stream<? extends R1>> mapper)Same asCacheStream.flatMap(Function)except that the Function must also implementSerializabledefault DoubleCacheStreamCacheStream. flatMapToDouble(SerializableFunction<? super R,? extends DoubleStream> mapper)Same asCacheStream.flatMapToDouble(Function)except that the Function must also implementSerializabledefault IntCacheStreamCacheStream. flatMapToInt(SerializableFunction<? super R,? extends IntStream> mapper)Same asCacheStream.flatMapToInt(Function)except that the Function must also implementSerializabledefault LongCacheStreamCacheStream. flatMapToLong(SerializableFunction<? super R,? extends LongStream> mapper)Same asCacheStream.flatMapToLong(Function)except that the Function must also implementSerializabledefault <R1> CacheStream<R1>CacheStream. map(SerializableFunction<? super R,? extends R1> mapper)Same asCacheStream.map(Function)except that the Function must also implementSerializable -
Uses of SerializableFunction in org.infinispan.functional
Methods in org.infinispan.functional with parameters of type SerializableFunction Modifier and Type Method Description default <R> CompletableFuture<R>FunctionalMap.ReadOnlyMap. eval(K key, SerializableFunction<EntryView.ReadEntryView<K,V>,R> f)Same asFunctionalMap.ReadOnlyMap.eval(Object, Function)except that the function must also implementSerializabledefault <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 implementSerializabledefault <R> Traversable<R>FunctionalMap.ReadWriteMap. evalAll(SerializableFunction<EntryView.ReadWriteEntryView<K,V>,R> f)Same asFunctionalMap.ReadWriteMap.evalAll(Function)except that the function must also implementSerializabledefault <R> Traversable<R>FunctionalMap.ReadOnlyMap. evalMany(Set<? extends K> keys, SerializableFunction<EntryView.ReadEntryView<K,V>,R> f)Same asFunctionalMap.ReadOnlyMap.evalMany(Set, Function)except that the function must also implementSerializabledefault <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 SerializableFunction in org.infinispan.manager
Methods in org.infinispan.manager with parameters of type SerializableFunction Modifier and Type Method Description default <V> CompletableFuture<Void>ClusterExecutor. submitConsumer(SerializableFunction<? super EmbeddedCacheManager,? extends V> callable, TriConsumer<? super Address,? super V,? super Throwable> triConsumer)The same asClusterExecutor.submitConsumer(Function, TriConsumer), except the Callable must also implement Serializable.
-