IAsyncClient.ScanPartitions(ScanPolicy, RecordSequenceListener, PartitionFilter, String, String, String[]) Method
Asynchronously read records in specified namespace, set and partition filter.
If the policy's concurrentNodes is specified, each server node will be read in
parallel. Otherwise, server nodes are read in series.
This method schedules the scan command with a channel selector and returns.
Another thread will process the command and send the results to the listener.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
void ScanPartitions(
ScanPolicy policy,
RecordSequenceListener listener,
PartitionFilter partitionFilter,
string ns,
string setName,
params string[] binNames
)
Parameters
- policy ScanPolicy
- scan configuration parameters, pass in null for defaults
- listener RecordSequenceListener
- where to send results
- partitionFilter PartitionFilter
- filter on a subset of data partitions
- ns String
- namespace - equivalent to database name
- setName String
- optional set name - equivalent to database table
- binNames String[]
- optional bin to retrieve. All bins will be returned if not specified.