Package com.hazelcast.jet.aggregate
Class AggregateOperationBuilder.Arity3<T0,T1,T2,A,R>
- java.lang.Object
-
- com.hazelcast.jet.aggregate.AggregateOperationBuilder.Arity3<T0,T1,T2,A,R>
-
- Type Parameters:
T0
- the type of item in stream-0T1
- the type of item in stream-1T2
- the type of item in stream-2A
- the type of the accumulatorR
- type of the aggregation result
- Enclosing class:
- AggregateOperationBuilder<A>
public static class AggregateOperationBuilder.Arity3<T0,T1,T2,A,R> extends java.lang.Object
The arity-3 variant of the aggregate operation builder.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AggregateOperationBuilder.Arity3<T0,T1,T2,A,R>
andCombine(BiConsumerEx<? super A,? super A> combineFn)
Registers thecombine
primitive.AggregateOperationBuilder.Arity3<T0,T1,T2,A,R>
andDeduct(BiConsumerEx<? super A,? super A> deductFn)
Registers thededuct
primitive.<R_NEW> AggregateOperationBuilder.Arity3<T0,T1,T2,A,R_NEW>
andExport(FunctionEx<? super A,? extends R_NEW> exportFn)
Registers theexport
primitive.<R_NEW> AggregateOperation3<T0,T1,T2,A,R_NEW>
andExportFinish(FunctionEx<? super A,? extends R_NEW> exportFinishFn)
AggregateOperation3<T0,T1,T2,A,R>
andFinish(FunctionEx<? super A,? extends R> finishFn)
Registers thefinish
primitive.
-
-
-
Method Detail
-
andCombine
@Nonnull public AggregateOperationBuilder.Arity3<T0,T1,T2,A,R> andCombine(@Nullable BiConsumerEx<? super A,? super A> combineFn)
Registers thecombine
primitive.The given function must be stateless and cooperative.
-
andDeduct
@Nonnull public AggregateOperationBuilder.Arity3<T0,T1,T2,A,R> andDeduct(@Nullable BiConsumerEx<? super A,? super A> deductFn)
Registers thededuct
primitive.The given function must be stateless and cooperative.
-
andExport
@Nonnull public <R_NEW> AggregateOperationBuilder.Arity3<T0,T1,T2,A,R_NEW> andExport(@Nonnull FunctionEx<? super A,? extends R_NEW> exportFn)
Registers theexport
primitive.The given function must be stateless and cooperative.
-
andFinish
@Nonnull public AggregateOperation3<T0,T1,T2,A,R> andFinish(@Nonnull FunctionEx<? super A,? extends R> finishFn)
Registers thefinish
primitive. Constructs and returns anAggregateOperation3
from the current state of the builder.The given function must be stateless and cooperative.
- Throws:
java.lang.IllegalStateException
- if theexport
primitive was not registered
-
andExportFinish
@Nonnull public <R_NEW> AggregateOperation3<T0,T1,T2,A,R_NEW> andExportFinish(@Nonnull FunctionEx<? super A,? extends R_NEW> exportFinishFn)
Registers the supplied function as both theexport
andfinish
primitive. Constructs and returns anAggregateOperation3
from the current state of the builder.The given function must be stateless and cooperative.
- Throws:
java.lang.IllegalStateException
- if theexport
primitive is already registered
-
-