| AverageOperator<T extends java.lang.Number> |
Average operator emitting the average of the items emitted by the upstream.
|
| CountOperator<T> |
Count operator emitting the current count.
|
| IndexOperator<T> |
Index operator emitting a Tuple2<Long, T>, with the index (0-based) of the
element and the element from upstream.
|
| Math |
A set of Mutiny operators related to various mathematical functions.
|
| MaxOperator<T extends java.lang.Comparable<T>> |
Max operator emitting the max of the emitted items from upstream.
|
| MedianOperator<T extends java.lang.Number & java.lang.Comparable<T>> |
Median operator emitting the median all all the item emitter by the upstream.
|
| MinOperator<T extends java.lang.Comparable<T>> |
Min operator emitting the min of the emitted items from upstream.
|
| OccurrenceOperator<T> |
|
| Statistic<T> |
A state object for collecting statistics such as count, average, min, max, variance, standard deviation, skewness,
and kurtosis.
|
| StatisticsOperator<T extends java.lang.Number & java.lang.Comparable<T>> |
Operator computing statistics based on the items emitted by the upstreams.
|
| SumOperator<T extends java.lang.Number> |
Sum operator emitting the current sum of the item emitted by the upstream.
|
| TopOperator<T extends java.lang.Comparable<T>> |
|