T
- public class PickAnyAccumulator<T> extends Object
AggregateOperations.pickAny()
aggregate operation. It maintains the
count of accumulated items so that it can properly set its value to
null
when all the items are deducted.Constructor and Description |
---|
PickAnyAccumulator()
Constructs an empty
pickAny accumulator. |
PickAnyAccumulator(T value)
Constructs a
pickAny accumulator with the full state passed in
the parameters. |
Modifier and Type | Method and Description |
---|---|
void |
accumulate(T t)
Accumulates an item.
|
void |
combine(PickAnyAccumulator<T> other)
Combines another accumulator with this one.
|
boolean |
equals(Object o) |
T |
get()
Returns the picked object.
|
int |
hashCode() |
String |
toString() |
public PickAnyAccumulator()
pickAny
accumulator.public PickAnyAccumulator(T value)
pickAny
accumulator with the full state passed in
the parameters.value
- the picked objectpublic void combine(@Nonnull PickAnyAccumulator<T> other)
public T get()
Copyright © 2022 Hazelcast, Inc.. All rights reserved.