| Package | Description |
|---|---|
| com.hazelcast.jet.function |
Serializable variants of functional interfaces from
java.util.function. |
| com.hazelcast.jet.stream |
java.util.stream implementation using Hazelcast Jet
|
| Modifier and Type | Method and Description |
|---|---|
static <T> DistributedComparator<T> |
DistributedComparator.comparingInt(DistributedToIntFunction<? super T> toKeyFn)
Serializable variant of java.util.Comparator#comparingInt(ToIntFunction). |
default DistributedComparator<T> |
DistributedComparator.thenComparingInt(DistributedToIntFunction<? super T> toKeyFn)
Serializable variant of java.util.Comparator#thenComparingInt(ToIntFunction). |
| Modifier and Type | Method and Description |
|---|---|
static <T> DistributedCollector<T,?,Double> |
DistributedCollectors.averagingInt(DistributedToIntFunction<? super T> mapper)
Serializable variant of java.util.stream.Collectors#averagingInt(ToIntFunction) |
default DistributedIntStream |
DistributedStream.mapToInt(DistributedToIntFunction<? super T> mapper)
Serializable variant of
java.util.stream.Stream#mapToInt(ToIntFunction). |
static <T> DistributedCollector<T,?,IntSummaryStatistics> |
DistributedCollectors.summarizingInt(DistributedToIntFunction<? super T> mapper)
Serializable variant of java.util.stream.Collectors#summarizingInt(ToIntFunction) |
static <T> DistributedCollector<T,?,Integer> |
DistributedCollectors.summingInt(DistributedToIntFunction<? super T> mapper)
Serializable variant of java.util.stream.Collectors#summingInt(ToIntFunction) |
Copyright © 2018 Hazelcast, Inc.. All rights reserved.