Read records in the database using specified namespace filter, set name filter and the
latest callback interface arguments. This method issues scan requests to every server
node in the cluster in parallel threads. The client parses the returned scan data and
calls the supplied user-defined callback method for each record returned.
The user can terminate the scan by returning false in the callback method.
This method will block until the scan is complete or terminated by the callback
method. Callbacks are made within the scope of this method call.
Namespace: net.citrusleafAssembly: CitrusleafLibrary (in CitrusleafLibrary.dll) Version: 2.0.0.0 (2.0.23.86)
Syntax
Parameters
- ns
- Type:
System String
Namespace.
- set
- Type:
System String
Set name. Pass null to retrieve all records in the namespace.
- timeoutMillis
- Type:
System Int32
Timeout in milliseconds. Not currently used.
- callback
- Type: net.citrusleaf CitrusleafClient IScanCallback
Callback interface for each returned record.
Return Value
See Also