Uses of Class
com.hazelcast.jet.aggregate.AggregateOperationBuilder.VarArity
Package
Description
Contains
AggregateOperation
and its several variants, as well
as a builder object for the aggregate operations.-
Uses of AggregateOperationBuilder.VarArity in com.hazelcast.jet.aggregate
Modifier and TypeMethodDescriptionAggregateOperationBuilder.andAccumulate
(Tag<T> tag, BiConsumerEx<? super A, ? super T> accumulateFn) Registers theaccumulate
primitive for the stream tagged with the supplied tag.AggregateOperationBuilder.VarArity.andAccumulate
(Tag<T> tag, BiConsumerEx<? super A, T> accumulateFn) Registers theaccumulate
primitive for the stream tagged with the supplied tag.AggregateOperationBuilder.VarArity.andCombine
(BiConsumerEx<? super A, ? super A> combineFn) Registers thecombine
primitive.AggregateOperationBuilder.VarArity.andDeduct
(BiConsumerEx<? super A, ? super A> deductFn) Registers thededuct
primitive.<R_NEW> AggregateOperationBuilder.VarArity<A,
R_NEW> AggregateOperationBuilder.VarArity.andExport
(FunctionEx<? super A, ? extends R_NEW> exportFn) Registers theexport
primitive.AggregateOperationBuilder.varArity()
Selects the variable-arity variant for this aggregate operation builder.