IAerospikeClient.QueryAggregate(QueryPolicy, Statement, Action<Object>) Method

Execute query, apply statement's aggregation function, call action for each aggregation object returned from server.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
void QueryAggregate(
	QueryPolicy policy,
	Statement statement,
	Action<Object> action
)

Parameters

policy  QueryPolicy
query configuration parameters, pass in null for defaults
statement  Statement
query definition with aggregate functions already initialized by SetAggregateFunction().
action  Action<Object>
action methods to be called for each aggregation object

Exceptions

AerospikeExceptionif query fails

See Also