Uses of Interface
org.infinispan.CacheStream
-
Packages that use CacheStream Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform.org.infinispan.filter Provides capabilities around filtering and converting entries that are found in the cache or cache store/loader.org.infinispan.interceptors.distribution Interceptors dealing with command replication in distributed/replicated mode.org.infinispan.util General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers. -
-
Uses of CacheStream in org.infinispan
Methods in org.infinispan that return CacheStream Modifier and Type Method Description CacheStream<Double>
DoubleCacheStream. boxed()
CacheStream<Integer>
IntCacheStream. boxed()
CacheStream<Long>
LongCacheStream. boxed()
CacheStream<R>
CacheStream. disableRehashAware()
Disables tracking of rehash events that could occur to the underlying cache.CacheStream<R>
CacheStream. distinct()
CacheStream<R>
CacheStream. distributedBatchSize(int batchSize)
Controls how many keys are returned from a remote node when using a stream terminal operation with a distributed cache to back this stream.CacheStream<R>
CacheStream. filter(Predicate<? super R> predicate)
default CacheStream<R>
CacheStream. filter(SerializablePredicate<? super R> predicate)
Same asfilter(Predicate)
except that the Predicate must also implementSerializable
CacheStream<R>
CacheStream. filterKeys(Set<?> keys)
Filters which entries are returned by only returning ones that map to the given key.CacheStream<R>
CacheStream. filterKeySegments(Set<Integer> segments)
Deprecated.This is to be replaced byfilterKeySegments(IntSet)
CacheStream<R>
CacheStream. filterKeySegments(IntSet segments)
Filters which entries are returned by what segment they are present in.<R1> CacheStream<R1>
CacheStream. flatMap(Function<? super R,? extends Stream<? extends R1>> mapper)
default <R1> CacheStream<R1>
CacheStream. flatMap(SerializableFunction<? super R,? extends Stream<? extends R1>> mapper)
Same asflatMap(Function)
except that the Function must also implementSerializable
CacheStream<R>
CacheStream. limit(long maxSize)
<R1> CacheStream<R1>
CacheStream. map(Function<? super R,? extends R1> mapper)
default <R1> CacheStream<R1>
CacheStream. map(SerializableFunction<? super R,? extends R1> mapper)
Same asmap(Function)
except that the Function must also implementSerializable
<U> CacheStream<U>
DoubleCacheStream. mapToObj(DoubleFunction<? extends U> mapper)
default <U> CacheStream<U>
DoubleCacheStream. mapToObj(SerializableDoubleFunction<? extends U> mapper)
Same asDoubleCacheStream.mapToObj(DoubleFunction)
except that the DoubleFunction must also implementSerializable
<U> CacheStream<U>
IntCacheStream. mapToObj(IntFunction<? extends U> mapper)
default <U> CacheStream<U>
IntCacheStream. mapToObj(SerializableIntFunction<? extends U> mapper)
Same asIntCacheStream.mapToObj(IntFunction)
except that the IntFunction must also implementSerializable
<U> CacheStream<U>
LongCacheStream. mapToObj(LongFunction<? extends U> mapper)
default <U> CacheStream<U>
LongCacheStream. mapToObj(SerializableLongFunction<? extends U> mapper)
Same asLongCacheStream.mapToObj(LongFunction)
except that the LongFunction must also implement Serializable.CacheStream<R>
CacheStream. onClose(Runnable closeHandler)
CacheStream<R>
CacheStream. parallel()
CacheStream<R>
CacheStream. parallelDistribution()
CacheStream<E>
CacheCollection. parallelStream()
CacheStream<R>
CacheStream. peek(Consumer<? super R> action)
default CacheStream<R>
CacheStream. peek(SerializableConsumer<? super R> action)
Same aspeek(Consumer)
except that the Consumer must also implementSerializable
CacheStream<R>
CacheStream. segmentCompletionListener(BaseCacheStream.SegmentCompletionListener listener)
Allows registration of a segment completion listener that is notified when a segment has completed processing.CacheStream<R>
CacheStream. sequential()
CacheStream<R>
CacheStream. sequentialDistribution()
This would disable sending requests to all other remote nodes compared to one at a time.CacheStream<R>
CacheStream. skip(long n)
CacheStream<R>
CacheStream. sorted()
CacheStream<R>
CacheStream. sorted(Comparator<? super R> comparator)
default CacheStream<R>
CacheStream. sorted(SerializableComparator<? super R> comparator)
Same assorted(Comparator)
except that the Comparator must also implementSerializable
CacheStream<E>
CacheCollection. stream()
CacheStream<R>
CacheStream. timeout(long timeout, TimeUnit unit)
Sets a given time to wait for a remote operation to respond by.CacheStream<R>
CacheStream. unordered()
-
Uses of CacheStream in org.infinispan.filter
Methods in org.infinispan.filter that return CacheStream Modifier and Type Method Description static <K,V,C>
CacheStream<CacheEntry<K,C>>CacheFilters. filterAndConvert(CacheStream<CacheEntry<K,V>> stream, KeyValueFilterConverter<? super K,? super V,C> filterConverter)
Methods in org.infinispan.filter with parameters of type CacheStream Modifier and Type Method Description static <K,V,C>
CacheStream<CacheEntry<K,C>>CacheFilters. filterAndConvert(CacheStream<CacheEntry<K,V>> stream, KeyValueFilterConverter<? super K,? super V,C> filterConverter)
-
Uses of CacheStream in org.infinispan.interceptors.distribution
Methods in org.infinispan.interceptors.distribution that return CacheStream Modifier and Type Method Description CacheStream<CacheEntry<K,V>>
DistributionBulkInterceptor.BackingEntrySet. parallelStream()
CacheStream<K>
DistributionBulkInterceptor.BackingKeySet. parallelStream()
CacheStream<CacheEntry<K,V>>
DistributionBulkInterceptor.TxBackingEntrySet. parallelStream()
CacheStream<CacheEntry<K,V>>
DistributionBulkInterceptor.BackingEntrySet. stream()
CacheStream<K>
DistributionBulkInterceptor.BackingKeySet. stream()
CacheStream<CacheEntry<K,V>>
DistributionBulkInterceptor.TxBackingEntrySet. stream()
-
Uses of CacheStream in org.infinispan.util
Classes in org.infinispan.util that implement CacheStream Modifier and Type Class Description class
AbstractDelegatingCacheStream<R>
Delegate that forwards all the of the method calls to the underlying cache stream.Fields in org.infinispan.util declared as CacheStream Modifier and Type Field Description protected CacheStream<?>
AbstractDelegatingCacheStream. underlyingStream
Methods in org.infinispan.util that return CacheStream Modifier and Type Method Description CacheStream<R>
AbstractDelegatingCacheStream. distinct()
CacheStream<R>
AbstractDelegatingCacheStream. filter(Predicate<? super R> predicate)
<R1> CacheStream<R1>
AbstractDelegatingCacheStream. flatMap(Function<? super R,? extends Stream<? extends R1>> mapper)
CacheStream<R>
AbstractDelegatingCacheStream. limit(long maxSize)
<R1> CacheStream<R1>
AbstractDelegatingCacheStream. map(Function<? super R,? extends R1> mapper)
CacheStream<R>
AbstractDelegatingCacheStream. onClose(Runnable closeHandler)
CacheStream<R>
AbstractDelegatingCacheStream. parallel()
CacheStream<E>
AbstractDelegatingCacheCollection. parallelStream()
CacheStream<R>
CacheCollectionMapper. parallelStream()
Deprecated.CacheStream<R>
CacheSetMapper. parallelStream()
CacheStream<R>
WriteableCacheCollectionMapper. parallelStream()
CacheStream<R>
AbstractDelegatingCacheStream. peek(Consumer<? super R> action)
CacheStream<R>
AbstractDelegatingCacheStream. sequential()
CacheStream<R>
AbstractDelegatingCacheStream. skip(long n)
CacheStream<R>
AbstractDelegatingCacheStream. sorted()
CacheStream<R>
AbstractDelegatingCacheStream. sorted(Comparator<? super R> comparator)
CacheStream<E>
AbstractDelegatingCacheCollection. stream()
CacheStream<R>
CacheCollectionMapper. stream()
Deprecated.CacheStream<R>
CacheSetMapper. stream()
CacheStream<R>
WriteableCacheCollectionMapper. stream()
CacheStream<R>
AbstractDelegatingCacheStream. unordered()
Constructors in org.infinispan.util with parameters of type CacheStream Constructor Description AbstractDelegatingCacheStream(CacheStream<R> stream)
-