AerospikeClient.Query(QueryPolicy, Statement, Action<Key, Record>) Method

Execute query and call action for each record returned from server.

Definition

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

Parameters

policy  QueryPolicy
generic configuration parameters, pass in null for defaults
statement  Statement
query definition
action  Action<Key, Record>
action methods to be called for each record

Implements

IAerospikeClient.Query(QueryPolicy, Statement, Action<Key, Record>)

Exceptions

AerospikeExceptionif query fails

See Also