Uses of Class
com.hazelcast.jet.accumulator.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
Modifier 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.Modifier 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
Modifier 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.