Uses of Class
com.hazelcast.jet.accumulator.PickAnyAccumulator
Packages that use PickAnyAccumulator
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 PickAnyAccumulator in com.hazelcast.jet.accumulator
Methods in com.hazelcast.jet.accumulator with parameters of type PickAnyAccumulatorModifier and TypeMethodDescriptionvoid
PickAnyAccumulator.combine
(PickAnyAccumulator<T> other) Combines another accumulator with this one. -
Uses of PickAnyAccumulator in com.hazelcast.jet.aggregate
Methods in com.hazelcast.jet.aggregate that return types with arguments of type PickAnyAccumulatorModifier and TypeMethodDescriptionstatic <T> AggregateOperation1<T,
PickAnyAccumulator<T>, T> AggregateOperations.pickAny()
Returns an aggregate operation whose result is an arbitrary item it observed, ornull
if it observed no items.