| Interface | Description |
|---|---|
| Accumulator<V,R extends Serializable> |
Accumulators collect distributed statistics or aggregates in a from user functions
and operators.
|
| SimpleAccumulator<T extends Serializable> |
Similar to Accumulator, but the type of items to add and the result value
must be the same.
|
| Class | Description |
|---|---|
| AccumulatorHelper | |
| AverageAccumulator |
An accumulator that computes the average value.
|
| DoubleCounter |
An accumulator that sums up
double values. |
| Histogram |
Histogram accumulator, which builds a histogram in a distributed manner.
|
| IntCounter |
An accumulator that sums up
Integer values. |
| ListAccumulator<T> |
This accumulator stores a collection of objects.
|
| LongCounter |
An accumulator that sums up
long values. |
| SerializedListAccumulator<T> |
This accumulator stores a collection of objects in serialized form, so that the stored objects
are not affected by modifications to the original objects.
|
Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.