Uses of Interface
org.infinispan.IntCacheStream
Package
Description
This is the core of Infinispan, a distributed, transactional, highly scalable data grid
platform.
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 IntCacheStream in org.infinispan
Modifier and TypeMethodDescriptionIntCacheStream.disableRehashAware()
Disables tracking of rehash events that could occur to the underlying cache.IntCacheStream.distinct()
IntCacheStream.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.IntCacheStream.filter
(IntPredicate predicate) default IntCacheStream
IntCacheStream.filter
(SerializableIntPredicate predicate) Same asfilter(IntPredicate)
except that the IntPredicate must also implementSerializable
IntCacheStream.filterKeys
(Set<?> keys) Filters which entries are returned by only returning ones that map to the given key.IntCacheStream.filterKeySegments
(Set<Integer> segments) Filters which entries are returned by what segment they are present in.IntCacheStream.flatMap
(IntFunction<? extends IntStream> mapper) default IntCacheStream
IntCacheStream.flatMap
(SerializableIntFunction<? extends IntStream> mapper) Same asflatMap(IntFunction)
except that the IntFunction must also implementSerializable
CacheStream.flatMapToInt
(Function<? super R, ? extends IntStream> mapper) default IntCacheStream
CacheStream.flatMapToInt
(SerializableFunction<? super R, ? extends IntStream> mapper) Same asCacheStream.flatMapToInt(Function)
except that the Function must also implementSerializable
IntCacheStream.limit
(long maxSize) IntCacheStream.map
(IntUnaryOperator mapper) default IntCacheStream
IntCacheStream.map
(SerializableIntUnaryOperator mapper) Same asmap(IntUnaryOperator)
except that the IntUnaryOperator must also implementSerializable
CacheStream.mapToInt
(ToIntFunction<? super R> mapper) default IntCacheStream
CacheStream.mapToInt
(SerializableToIntFunction<? super R> mapper) Same asCacheStream.mapToInt(ToIntFunction)
except that the ToIntFunction must also implementSerializable
DoubleCacheStream.mapToInt
(DoubleToIntFunction mapper) default IntCacheStream
DoubleCacheStream.mapToInt
(SerializableDoubleToIntFunction mapper) Same asDoubleCacheStream.mapToInt(DoubleToIntFunction)
except that the DoubleToIntFunction must also implementSerializable
LongCacheStream.mapToInt
(LongToIntFunction mapper) default IntCacheStream
LongCacheStream.mapToInt
(SerializableLongToIntFunction mapper) Same asLongCacheStream.mapToInt(LongToIntFunction)
except that the LongToIntFunction must also implement Serializable.IntCacheStream.parallel()
IntCacheStream.parallelDistribution()
IntCacheStream.peek
(IntConsumer action) default IntCacheStream
IntCacheStream.peek
(SerializableIntConsumer action) Same asflatMap(IntFunction)
except that the IntFunction must also implementSerializable
IntCacheStream.segmentCompletionListener
(BaseCacheStream.SegmentCompletionListener listener) Allows registration of a segment completion listener that is notified when a segment has completed processing.IntCacheStream.sequential()
IntCacheStream.sequentialDistribution()
This would disable sending requests to all other remote nodes compared to one at a time.IntCacheStream.skip
(long n) IntCacheStream.sorted()
Sets a given time to wait for a remote operation to respond by.IntCacheStream.unordered()
-
Uses of IntCacheStream in org.infinispan.stream.impl
Modifier and TypeClassDescriptionclass
DistributedIntCacheStream<Original>
Implementation ofIntStream
that utilizes a lazily evaluated distributed back end execution.class
An intermediate int cache stream used when an intermediate operation that requires both a remote and local portionModifier and TypeMethodDescriptionDistributedIntCacheStream.disableRehashAware()
IntermediateIntCacheStream.disableRehashAware()
DistributedIntCacheStream.distinct()
IntermediateIntCacheStream.distinct()
DistributedIntCacheStream.distributedBatchSize
(int batchSize) IntermediateIntCacheStream.distributedBatchSize
(int batchSize) DistributedIntCacheStream.filter
(IntPredicate predicate) DistributedIntCacheStream.filter
(SerializableIntPredicate predicate) IntermediateIntCacheStream.filter
(IntPredicate predicate) DistributedIntCacheStream.filterKeys
(Set<?> keys) IntermediateIntCacheStream.filterKeys
(Set<?> keys) DistributedIntCacheStream.filterKeySegments
(Set<Integer> segments) DistributedIntCacheStream.filterKeySegments
(IntSet segments) IntermediateIntCacheStream.filterKeySegments
(Set<Integer> segments) IntermediateIntCacheStream.filterKeySegments
(IntSet segments) DistributedIntCacheStream.flatMap
(IntFunction<? extends IntStream> mapper) DistributedIntCacheStream.flatMap
(SerializableIntFunction<? extends IntStream> mapper) IntermediateIntCacheStream.flatMap
(IntFunction<? extends IntStream> mapper) DistributedCacheStream.flatMapToInt
(Function<? super R, ? extends IntStream> mapper) IntermediateCacheStream.flatMapToInt
(Function<? super R, ? extends IntStream> mapper) DistributedIntCacheStream.limit
(long maxSize) IntermediateIntCacheStream.limit
(long maxSize) DistributedIntCacheStream.map
(IntUnaryOperator mapper) DistributedIntCacheStream.map
(SerializableIntUnaryOperator mapper) IntermediateIntCacheStream.map
(IntUnaryOperator mapper) DistributedCacheStream.mapToInt
(ToIntFunction<? super R> mapper) DistributedDoubleCacheStream.mapToInt
(DoubleToIntFunction mapper) DistributedDoubleCacheStream.mapToInt
(SerializableDoubleToIntFunction mapper) DistributedLongCacheStream.mapToInt
(LongToIntFunction mapper) DistributedLongCacheStream.mapToInt
(SerializableLongToIntFunction mapper) IntermediateCacheStream.mapToInt
(ToIntFunction<? super R> mapper) IntermediateDoubleCacheStream.mapToInt
(DoubleToIntFunction mapper) IntermediateLongCacheStream.mapToInt
(LongToIntFunction mapper) IntermediateIntCacheStream.parallel()
DistributedIntCacheStream.parallelDistribution()
IntermediateIntCacheStream.parallelDistribution()
DistributedIntCacheStream.peek
(IntConsumer action) DistributedIntCacheStream.peek
(SerializableIntConsumer action) IntermediateIntCacheStream.peek
(IntConsumer action) DistributedIntCacheStream.segmentCompletionListener
(BaseCacheStream.SegmentCompletionListener listener) IntermediateIntCacheStream.segmentCompletionListener
(BaseCacheStream.SegmentCompletionListener listener) IntermediateIntCacheStream.sequential()
DistributedIntCacheStream.sequentialDistribution()
IntermediateIntCacheStream.sequentialDistribution()
DistributedIntCacheStream.skip
(long n) IntermediateIntCacheStream.skip
(long n) DistributedIntCacheStream.sorted()
IntermediateIntCacheStream.sorted()
IntermediateIntCacheStream.unordered()
-
Uses of IntCacheStream in org.infinispan.util
Modifier and TypeMethodDescriptionAbstractDelegatingCacheStream.flatMapToInt
(Function<? super R, ? extends IntStream> mapper) AbstractDelegatingCacheStream.mapToInt
(ToIntFunction<? super R> mapper)