Class IntermediateIntCacheStream
- All Implemented Interfaces:
AutoCloseable
,BaseStream<Integer,
,IntStream> IntStream
,BaseCacheStream<Integer,
,IntStream> IntCacheStream
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.infinispan.BaseCacheStream
BaseCacheStream.SegmentCompletionListener
Nested classes/interfaces inherited from interface java.util.stream.IntStream
IntStream.Builder
-
Constructor Summary
ConstructorDescriptionIntermediateIntCacheStream
(BaseCacheStream remoteStream, IntermediateType type, org.infinispan.stream.impl.local.LocalIntCacheStream localIntStream, org.infinispan.stream.impl.IntermediateCacheStreamSupplier supplier) IntermediateIntCacheStream
(DistributedIntCacheStream remoteStream) -
Method Summary
Modifier and TypeMethodDescriptionboolean
allMatch
(IntPredicate predicate) boolean
anyMatch
(IntPredicate predicate) average()
boxed()
void
close()
<R> R
collect
(Supplier<R> supplier, ObjIntConsumer<R> accumulator, BiConsumer<R, R> combiner) long
count()
Disables tracking of rehash events that could occur to the underlying cache.distinct()
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.filter
(IntPredicate predicate) filterKeys
(Set<?> keys) Filters which entries are returned by only returning ones that map to the given key.filterKeySegments
(Set<Integer> segments) Filters which entries are returned by what segment they are present in.filterKeySegments
(IntSet segments) Filters which entries are returned by what segment they are present in.findAny()
flatMap
(IntFunction<? extends IntStream> mapper) void
forEach
(IntConsumer action) <K,
V> void forEach
(ObjIntConsumer<Cache<K, V>> action) Same asIntStream.forEach(IntConsumer)
except that it takes anObjIntConsumer
that provides access to the underlyingCache
that is backing this stream.void
forEachOrdered
(IntConsumer action) boolean
iterator()
limit
(long maxSize) map
(IntUnaryOperator mapper) mapToDouble
(IntToDoubleFunction mapper) mapToLong
(IntToLongFunction mapper) <U> CacheStream
<U> mapToObj
(IntFunction<? extends U> mapper) max()
min()
boolean
noneMatch
(IntPredicate predicate) parallel()
This would enable sending requests to all other remote nodes when a terminal operator is performed.peek
(IntConsumer action) int
reduce
(int identity, IntBinaryOperator op) Allows registration of a segment completion listener that is notified when a segment has completed processing.This would disable sending requests to all other remote nodes compared to one at a time.skip
(long n) sorted()
int
sum()
Sets a given time to wait for a remote operation to respond by.int[]
toArray()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
IntermediateIntCacheStream
-
IntermediateIntCacheStream
public IntermediateIntCacheStream(BaseCacheStream remoteStream, IntermediateType type, org.infinispan.stream.impl.local.LocalIntCacheStream localIntStream, org.infinispan.stream.impl.IntermediateCacheStreamSupplier supplier)
-
-
Method Details
-
sequentialDistribution
Description copied from interface:IntCacheStream
This would disable sending requests to all other remote nodes compared to one at a time. This can reduce memory pressure on the originator node at the cost of performance.Parallel distribution is enabled by default except for
CacheStream.iterator()
andCacheStream.spliterator()
- Specified by:
sequentialDistribution
in interfaceBaseCacheStream<Integer,
IntStream> - Specified by:
sequentialDistribution
in interfaceIntCacheStream
- Returns:
- a stream with parallel distribution disabled.
-
parallelDistribution
Description copied from interface:BaseCacheStream
This would enable sending requests to all other remote nodes when a terminal operator is performed. This requires additional overhead as it must process results concurrently from various nodes, but should perform faster in the majority of cases.Parallel distribution is enabled by default except for
CacheStream.iterator()
andCacheStream.spliterator()
- Specified by:
parallelDistribution
in interfaceBaseCacheStream<Integer,
IntStream> - Specified by:
parallelDistribution
in interfaceIntCacheStream
- Returns:
- a stream with parallel distribution enabled.
-
filterKeySegments
Description copied from interface:IntCacheStream
Filters which entries are returned by what segment they are present in. This method can be substantially more efficient than using a regularCacheStream.filter(Predicate)
method as this can control what nodes are asked for data and what entries are read from the underlying CacheStore if present.- Specified by:
filterKeySegments
in interfaceBaseCacheStream<Integer,
IntStream> - Specified by:
filterKeySegments
in interfaceIntCacheStream
- Parameters:
segments
- The segments to use for this stream operation. Any segments not in this set will be ignored.- Returns:
- a stream with the segments filtered.
-
filterKeySegments
Description copied from interface:BaseCacheStream
Filters which entries are returned by what segment they are present in. This method can be substantially more efficient than using a regularCacheStream.filter(Predicate)
method as this can control what nodes are asked for data and what entries are read from the underlying CacheStore if present.- Specified by:
filterKeySegments
in interfaceBaseCacheStream<Integer,
IntStream> - Parameters:
segments
- The segments to use for this stream operation. Any segments not in this set will be ignored.- Returns:
- a stream with the segments filtered.
-
filterKeys
Description copied from interface:IntCacheStream
Filters which entries are returned by only returning ones that map to the given key. This method will be faster than a regularCacheStream.filter(Predicate)
if the filter is holding references to the same keys.- Specified by:
filterKeys
in interfaceBaseCacheStream<Integer,
IntStream> - Specified by:
filterKeys
in interfaceIntCacheStream
- Parameters:
keys
- The keys that this stream will only operate on.- Returns:
- a stream with the keys filtered.
-
distributedBatchSize
Description copied from interface:IntCacheStream
Controls how many keys are returned from a remote node when using a stream terminal operation with a distributed cache to back this stream. This value is ignored when terminal operators that don't track keys are used. Key tracking terminal operators areCacheStream.iterator()
,CacheStream.spliterator()
,CacheStream.forEach(Consumer)
. Please see those methods for additional information on how this value may affect them.This value may be used in the case of a a terminal operator that doesn't track keys if an intermediate operation is performed that requires bringing keys locally to do computations. Examples of such intermediate operations are
CacheStream.sorted()
,CacheStream.sorted(Comparator)
,CacheStream.distinct()
,CacheStream.limit(long)
,CacheStream.skip(long)
This value is always ignored when this stream is backed by a cache that is not distributed as all values are already local.
- Specified by:
distributedBatchSize
in interfaceBaseCacheStream<Integer,
IntStream> - Specified by:
distributedBatchSize
in interfaceIntCacheStream
- Parameters:
batchSize
- The size of each batch. This defaults to the state transfer chunk size.- Returns:
- a stream with the batch size updated
-
segmentCompletionListener
Description copied from interface:IntCacheStream
Allows registration of a segment completion listener that is notified when a segment has completed processing. If the terminal operator has a short circuit this listener may never be called.This method is designed for the sole purpose of use with the
CacheStream.iterator()
to allow for a user to track completion of segments as they are returned from the iterator. Behavior of other methods is not specified. Please seeCacheStream.iterator()
for more information.Multiple listeners may be registered upon multiple invocations of this method. The ordering of notified listeners is not specified.
This is only used if this stream did not invoke
BaseCacheStream.disableRehashAware()
and has no flat map based operations. If this is done no segments will be notified.- Specified by:
segmentCompletionListener
in interfaceBaseCacheStream<Integer,
IntStream> - Specified by:
segmentCompletionListener
in interfaceIntCacheStream
- Parameters:
listener
- The listener that will be called back as segments are completed.- Returns:
- a stream with the listener registered.
-
disableRehashAware
Description copied from interface:IntCacheStream
Disables tracking of rehash events that could occur to the underlying cache. If a rehash event occurs while a terminal operation is being performed it is possible for some values that are in the cache to not be found. Note that you will never have an entry duplicated when rehash awareness is disabled, only lost values.Most terminal operations will run faster with rehash awareness disabled even without a rehash occuring. However if a rehash occurs with this disabled be prepared to possibly receive only a subset of values.
- Specified by:
disableRehashAware
in interfaceBaseCacheStream<Integer,
IntStream> - Specified by:
disableRehashAware
in interfaceIntCacheStream
- Returns:
- a stream with rehash awareness disabled.
-
timeout
Description copied from interface:IntCacheStream
Sets a given time to wait for a remote operation to respond by. This timeout does nothing if the terminal operation does not go remote.If a timeout does occur then a
TimeoutException
is thrown from the terminal operation invoking thread or on the next call to theIterator
orSpliterator
.Note that if a rehash occurs this timeout value is reset for the subsequent retry if rehash aware is enabled.
- Specified by:
timeout
in interfaceBaseCacheStream<Integer,
IntStream> - Specified by:
timeout
in interfaceIntCacheStream
- Parameters:
timeout
- the maximum time to waitunit
- the time unit of the timeout argument- Returns:
- a stream with the timeout set
-
isParallel
public boolean isParallel()- Specified by:
isParallel
in interfaceBaseStream<Integer,
IntStream>
-
sorted
Description copied from interface:IntCacheStream
- Specified by:
sorted
in interfaceIntCacheStream
- Specified by:
sorted
in interfaceIntStream
- Returns:
- the new cache int stream
-
limit
Description copied from interface:IntCacheStream
- Specified by:
limit
in interfaceIntCacheStream
- Specified by:
limit
in interfaceIntStream
- Returns:
- the new cache int stream
-
skip
Description copied from interface:IntCacheStream
- Specified by:
skip
in interfaceIntCacheStream
- Specified by:
skip
in interfaceIntStream
- Returns:
- the new cache int stream
-
peek
Description copied from interface:IntCacheStream
- Specified by:
peek
in interfaceIntCacheStream
- Specified by:
peek
in interfaceIntStream
- Returns:
- the new cache int stream
-
distinct
Description copied from interface:IntCacheStream
- Specified by:
distinct
in interfaceIntCacheStream
- Specified by:
distinct
in interfaceIntStream
- Returns:
- the new cache int stream
-
filter
Description copied from interface:IntCacheStream
- Specified by:
filter
in interfaceIntCacheStream
- Specified by:
filter
in interfaceIntStream
- Returns:
- the new cache int stream
-
map
Description copied from interface:IntCacheStream
- Specified by:
map
in interfaceIntCacheStream
- Specified by:
map
in interfaceIntStream
- Returns:
- the new cache int stream
-
mapToObj
Description copied from interface:IntCacheStream
- Specified by:
mapToObj
in interfaceIntCacheStream
- Specified by:
mapToObj
in interfaceIntStream
- Returns:
- the new cache stream
-
mapToLong
Description copied from interface:IntCacheStream
- Specified by:
mapToLong
in interfaceIntCacheStream
- Specified by:
mapToLong
in interfaceIntStream
- Returns:
- the new cache long stream
-
mapToDouble
Description copied from interface:IntCacheStream
- Specified by:
mapToDouble
in interfaceIntCacheStream
- Specified by:
mapToDouble
in interfaceIntStream
- Returns:
- the new cache double stream
-
flatMap
Description copied from interface:IntCacheStream
- Specified by:
flatMap
in interfaceIntCacheStream
- Specified by:
flatMap
in interfaceIntStream
- Returns:
- the new cache int stream
-
parallel
Description copied from interface:IntCacheStream
- Specified by:
parallel
in interfaceBaseStream<Integer,
IntStream> - Specified by:
parallel
in interfaceIntCacheStream
- Specified by:
parallel
in interfaceIntStream
- Returns:
- a parallel cache int stream
-
iterator
-
spliterator
- Specified by:
spliterator
in interfaceBaseStream<Integer,
IntStream> - Specified by:
spliterator
in interfaceIntStream
-
sequential
Description copied from interface:IntCacheStream
- Specified by:
sequential
in interfaceBaseStream<Integer,
IntStream> - Specified by:
sequential
in interfaceIntCacheStream
- Specified by:
sequential
in interfaceIntStream
- Returns:
- a sequential cache int stream
-
unordered
Description copied from interface:IntCacheStream
- Specified by:
unordered
in interfaceBaseStream<Integer,
IntStream> - Specified by:
unordered
in interfaceIntCacheStream
- Returns:
- an unordered cache int stream
-
forEach
-
forEach
Description copied from interface:IntCacheStream
Same asIntStream.forEach(IntConsumer)
except that it takes anObjIntConsumer
that provides access to the underlyingCache
that is backing this stream.Note that the
CacheAware
interface is not supported for injection using this method as the cache is provided in the consumer directly.- Specified by:
forEach
in interfaceIntCacheStream
- Type Parameters:
K
- key type of the cacheV
- value type of the cache- Parameters:
action
- consumer to be ran for each element in the stream
-
forEachOrdered
- Specified by:
forEachOrdered
in interfaceIntStream
-
toArray
public int[] toArray() -
reduce
-
reduce
-
collect
-
sum
public int sum() -
min
-
max
-
count
public long count() -
average
-
summaryStatistics
- Specified by:
summaryStatistics
in interfaceIntStream
-
anyMatch
-
allMatch
-
noneMatch
-
findFirst
-
findAny
-
boxed
Description copied from interface:IntCacheStream
- Specified by:
boxed
in interfaceIntCacheStream
- Specified by:
boxed
in interfaceIntStream
- Returns:
- the new cache stream containing integers
-
asDoubleStream
Description copied from interface:IntCacheStream
- Specified by:
asDoubleStream
in interfaceIntCacheStream
- Specified by:
asDoubleStream
in interfaceIntStream
- Returns:
- the cache double stream
-
asLongStream
Description copied from interface:IntCacheStream
- Specified by:
asLongStream
in interfaceIntCacheStream
- Specified by:
asLongStream
in interfaceIntStream
- Returns:
- the cache long stream
-
onClose
Description copied from interface:IntCacheStream
- Specified by:
onClose
in interfaceBaseStream<Integer,
IntStream> - Specified by:
onClose
in interfaceIntCacheStream
- Returns:
- a cache int stream with the handler applied
-
close
public void close()- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceBaseStream<Integer,
IntStream>
-