Applies the aggregation logic on all map entries and returns the result
Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.1
Syntax
Parameters
- aggregator
- Type: Hazelcast.CoreIAggregatorTResult
Aggregator to aggregate the entries with. This must be serializable via hazelcast serialization and have a counterpart on server side. One of the builtin Aggregators or a custom IAggregatorTResult implementation can be used. - predicate
- Type: Hazelcast.CoreIPredicate
predicate to filter the entries with. This must be serializable via hazelcast serialization and have a counterpart on server side.
Type Parameters
- TResult
- type of the result
Return Value
Type: TResultthe result of the given type
Remarks
See Also