T0 - the type of the stream-0 itempublic class WindowAggregateBuilder1<T0> extends Object
StageWithWindow.aggregateBuilder() on one of
 the stages to co-aggregate and refer to that method's Javadoc for
 further details.
 
 Note: this is not a builder of AggregateOperation. If that' s what you are looking for, go here.
| Modifier and Type | Method and Description | 
|---|---|
| <E> Tag<E> | add(StreamStage<E> stage)Adds another stage that will contribute its data to the aggregate
 operation to be performed. | 
| <A,R> StreamStage<WindowResult<R>> | build(AggregateOperation<A,R> aggrOp)Creates and returns a pipeline stage that performs a windowed
 co-aggregation of the pipeline stages registered with this builder
 object. | 
| Tag<T0> | tag0()Returns the tag corresponding to the pipeline stage this builder
 was obtained from. | 
@Nonnull public Tag<T0> tag0()
AggregateOperation that you'll pass to build(aggrOp).@Nonnull public <E> Tag<E> add(StreamStage<E> stage)
AggregateOperation that you'll pass to
 build().@Nonnull public <A,R> StreamStage<WindowResult<R>> build(@Nonnull AggregateOperation<A,R> aggrOp)
R - the type of the aggregation resultaggrOp - the aggregate operation to performCopyright © 2022 Hazelcast, Inc.. All rights reserved.