Read records in specified namespace, set and partition filter.
This call will block until the scan is complete - callbacks are made within the scope of this call.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.0.0.0 (5.0.0)
Syntax
C#
void ScanPartitions( ScanPolicy policy, PartitionFilter partitionFilter, string ns, string setName, ScanCallback callback, params string[] binNames )
Parameters
- policy
- Type: Aerospike.ClientScanPolicy
scan configuration parameters, pass in null for defaults - partitionFilter
- Type: Aerospike.ClientPartitionFilter
filter on a subset of data partitions - ns
- Type: SystemString
namespace - equivalent to database name - setName
- Type: SystemString
optional set name - equivalent to database table - callback
- Type: Aerospike.ClientScanCallback
read callback method - called with record data - binNames
- Type: SystemString
optional bin to retrieve. All bins will be returned if not specified.
Exceptions
Exception | Condition |
---|---|
AerospikeException | if scan fails |
See Also