AsyncClientQuery(QueryPolicy, RecordSequenceListener, Statement) Method

Asynchronously execute query on all server nodes. The query policy's
C#
maxConcurrentNodes
dictate how many nodes can be queried in parallel. The default is to query all nodes in parallel.

This method schedules the node's query commands with channel selectors and returns. Selector threads will process the commands and send the results to the listener.

Requires server version 6.0+ if using a secondary index query.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public void Query(
	QueryPolicy policy,
	RecordSequenceListener listener,
	Statement statement
)

Parameters

policy  QueryPolicy
query configuration parameters, pass in null for defaults
listener  RecordSequenceListener
where to send results
statement  Statement
query definition

Implements

IAsyncClientQuery(QueryPolicy, RecordSequenceListener, Statement)

Exceptions

AerospikeExceptionif query fails

See Also