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.rest REST Server bootstrap and Netty bridge classes.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<java.lang.Double>DoubleCacheStream. boxed()CacheStream<java.lang.Integer>IntCacheStream. boxed()CacheStream<java.lang.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(java.util.function.Predicate<? super R> predicate)default CacheStream<R>CacheStream. filter(SerializablePredicate<? super R> predicate)Same asfilter(Predicate)except that the Predicate must also implementSerializableCacheStream<R>CacheStream. filterKeys(java.util.Set<?> keys)Filters which entries are returned by only returning ones that map to the given key.CacheStream<R>CacheStream. filterKeySegments(java.util.Set<java.lang.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(java.util.function.Function<? super R,? extends java.util.stream.Stream<? extends R1>> mapper)default <R1> CacheStream<R1>CacheStream. flatMap(SerializableFunction<? super R,? extends java.util.stream.Stream<? extends R1>> mapper)Same asflatMap(Function)except that the Function must also implementSerializableCacheStream<R>CacheStream. limit(long maxSize)<R1> CacheStream<R1>CacheStream. map(java.util.function.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(java.util.function.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(java.util.function.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(java.util.function.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(java.lang.Runnable closeHandler)CacheStream<R>CacheStream. parallel()CacheStream<R>CacheStream. parallelDistribution()CacheStream<E>CacheCollection. parallelStream()CacheStream<R>CacheStream. peek(java.util.function.Consumer<? super R> action)default CacheStream<R>CacheStream. peek(SerializableConsumer<? super R> action)Same aspeek(Consumer)except that the Consumer must also implementSerializableCacheStream<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(java.util.Comparator<? super R> comparator)default CacheStream<R>CacheStream. sorted(SerializableComparator<? super R> comparator)Same assorted(Comparator)except that the Comparator must also implementSerializableCacheStream<E>CacheCollection. stream()CacheStream<R>CacheStream. timeout(long timeout, java.util.concurrent.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.rest
Constructors in org.infinispan.rest with parameters of type CacheStream Constructor Description CacheInputStream(CacheStream<?> stream, int batchSize) -
Uses of CacheStream in org.infinispan.util
Classes in org.infinispan.util that implement CacheStream Modifier and Type Class Description classAbstractDelegatingCacheStream<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. underlyingStreamMethods in org.infinispan.util that return CacheStream Modifier and Type Method Description CacheStream<R>AbstractDelegatingCacheStream. distinct()CacheStream<R>AbstractDelegatingCacheStream. filter(java.util.function.Predicate<? super R> predicate)<R1> CacheStream<R1>AbstractDelegatingCacheStream. flatMap(java.util.function.Function<? super R,? extends java.util.stream.Stream<? extends R1>> mapper)CacheStream<R>AbstractDelegatingCacheStream. limit(long maxSize)<R1> CacheStream<R1>AbstractDelegatingCacheStream. map(java.util.function.Function<? super R,? extends R1> mapper)CacheStream<R>AbstractDelegatingCacheStream. onClose(java.lang.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(java.util.function.Consumer<? super R> action)CacheStream<R>AbstractDelegatingCacheStream. sequential()CacheStream<R>AbstractDelegatingCacheStream. skip(long n)CacheStream<R>AbstractDelegatingCacheStream. sorted()CacheStream<R>AbstractDelegatingCacheStream. sorted(java.util.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)
-