IntCacheStream |
IntCacheStream.disableRehashAware() |
Disables tracking of rehash events that could occur to the underlying cache.
|
IntCacheStream |
IntCacheStream.distinct() |
IntCacheStream |
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 |
IntCacheStream.filter(java.util.function.IntPredicate predicate) |
default IntCacheStream |
IntCacheStream.filter(SerializableIntPredicate predicate) |
|
IntCacheStream |
IntCacheStream.filterKeys(java.util.Set<?> keys) |
Filters which entries are returned by only returning ones that map to the given key.
|
IntCacheStream |
IntCacheStream.filterKeySegments(java.util.Set<java.lang.Integer> segments) |
Filters which entries are returned by what segment they are present in.
|
IntCacheStream |
IntCacheStream.flatMap(java.util.function.IntFunction<? extends java.util.stream.IntStream> mapper) |
default IntCacheStream |
IntCacheStream.flatMap(SerializableIntFunction<? extends java.util.stream.IntStream> mapper) |
|
IntCacheStream |
CacheStream.flatMapToInt(java.util.function.Function<? super R,? extends java.util.stream.IntStream> mapper) |
default IntCacheStream |
CacheStream.flatMapToInt(SerializableFunction<? super R,? extends java.util.stream.IntStream> mapper) |
|
IntCacheStream |
IntCacheStream.limit(long maxSize) |
IntCacheStream |
IntCacheStream.map(java.util.function.IntUnaryOperator mapper) |
default IntCacheStream |
IntCacheStream.map(SerializableIntUnaryOperator mapper) |
|
IntCacheStream |
CacheStream.mapToInt(java.util.function.ToIntFunction<? super R> mapper) |
default IntCacheStream |
CacheStream.mapToInt(SerializableToIntFunction<? super R> mapper) |
|
IntCacheStream |
DoubleCacheStream.mapToInt(java.util.function.DoubleToIntFunction mapper) |
default IntCacheStream |
DoubleCacheStream.mapToInt(SerializableDoubleToIntFunction mapper) |
|
IntCacheStream |
LongCacheStream.mapToInt(java.util.function.LongToIntFunction mapper) |
default IntCacheStream |
LongCacheStream.mapToInt(SerializableLongToIntFunction mapper) |
|
IntCacheStream |
IntCacheStream.onClose(java.lang.Runnable closeHandler) |
IntCacheStream |
IntCacheStream.parallel() |
IntCacheStream |
IntCacheStream.parallelDistribution() |
|
IntCacheStream |
IntCacheStream.peek(java.util.function.IntConsumer action) |
default IntCacheStream |
IntCacheStream.peek(SerializableIntConsumer action) |
|
IntCacheStream |
IntCacheStream.segmentCompletionListener(BaseCacheStream.SegmentCompletionListener listener) |
Allows registration of a segment completion listener that is notified when a segment has completed
processing.
|
IntCacheStream |
IntCacheStream.sequential() |
IntCacheStream |
IntCacheStream.sequentialDistribution() |
This would disable sending requests to all other remote nodes compared to one at a time.
|
IntCacheStream |
IntCacheStream.skip(long n) |
IntCacheStream |
IntCacheStream.sorted() |
IntCacheStream |
IntCacheStream.timeout(long timeout,
java.util.concurrent.TimeUnit unit) |
Sets a given time to wait for a remote operation to respond by.
|
IntCacheStream |
IntCacheStream.unordered() |