Uses of Class
com.hazelcast.jet.accumulator.LinTrendAccumulator
Packages that use LinTrendAccumulator
Package
Description
Classes intended to be used for accumulator objects in an
AggregateOperation
.Contains
AggregateOperation
and its several variants, as well
as a builder object for the aggregate operations.-
Uses of LinTrendAccumulator in com.hazelcast.jet.accumulator
Methods in com.hazelcast.jet.accumulator that return LinTrendAccumulatorModifier and TypeMethodDescriptionLinTrendAccumulator.accumulate
(long x, long y) Accumulates a new sample.LinTrendAccumulator.combine
(LinTrendAccumulator that) Combines this accumulator with the supplied one.LinTrendAccumulator.deduct
(LinTrendAccumulator that) Deducts the supplied accumulator from this one.Methods in com.hazelcast.jet.accumulator with parameters of type LinTrendAccumulatorModifier and TypeMethodDescriptionLinTrendAccumulator.combine
(LinTrendAccumulator that) Combines this accumulator with the supplied one.LinTrendAccumulator.deduct
(LinTrendAccumulator that) Deducts the supplied accumulator from this one. -
Uses of LinTrendAccumulator in com.hazelcast.jet.aggregate
Methods in com.hazelcast.jet.aggregate that return types with arguments of type LinTrendAccumulatorModifier and TypeMethodDescriptionstatic <T> AggregateOperation1<T,
LinTrendAccumulator, Double> AggregateOperations.linearTrend
(ToLongFunctionEx<T> getXFn, ToLongFunctionEx<T> getYFn) Returns an aggregate operation that computes a linear trend over the items.